# Yochi NFT

### Overview

This document describes how to integrate with the Yochi NFT minting process using the `mintWithChannel` function of the `YochiNFTGenerator` contract. This function allows for the minting of Yochi NFTs with specific configurations by specifying a channel ID.

### Contract Interface

#### `mintWithChannel` Function

Mints a Yochi NFT through a specified channel.

```solidity
function mintWithChannel(uint256 _channel) external returns (uint256)
```

**Parameters**

* `_channel` (uint256): The channel ID, used to identify different co-branded series or events.

**Return Value**

* `uint256`: The Token ID of the minted NFT.

**Usage Example**

```javascript
// JavaScript Example (using web3.js or ethers.js)
const abi = [{"inputs":[{"internalType":"uint256","name":"_channel","type":"uint256"}],"name":"mintWithChannel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}];
const contract = new web3.eth.Contract(abi, "0x882276945dc518C02bDd7414e4D77E205d59Be1c");
await contract.methods.mintWithChannel(100).send({ from: userAddress });
```

### Applying for New Co-branded Yochi NFTs

If you wish to apply for a new co-branded Yochi NFT, please fill out the following form:

[Apply for New Co-branded Yochi NFT Form](https://docs.google.com/forms/d/e/1FAIpQLSfpOCx9viMXwFlFmszlghNg3qfiTUmVON-nR-DtZ6TdfSij1g/viewform?pli=1)

Our team will review your application and contact you regarding potential collaboration.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.eniac.network/getting-started/yochi-nft.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
