> For the complete documentation index, see [llms.txt](https://tokenscript.gitbook.io/token-negotiator/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tokenscript.gitbook.io/token-negotiator/learn/issuer-configurations/issuer-configuration-evm.md).

# Issuer Configuration EVM

Parameters to create a configuration for Ethereum fungible or non-fungible token collections.&#x20;

| Parameter    | Type              | details                                                                                        | Options           |
| ------------ | ----------------- | ---------------------------------------------------------------------------------------------- | ----------------- |
| onChain      | boolean           | defines if the collection is on or off chain. Set this value to true.                          | true \| false     |
| collectionID | string            | a unique string identifier for your usage (this will be the name space your tokens are kept)   | string            |
| blockchain   | string            | defines the blockchain (refer to supported Chains page)                                        | string            |
| chain        | string            | the network of the blockchain (refer to supported Chains page)                                 | string            |
| contract     | string            | smart contract address of the collection                                                       | string            |
| fungible     | boolean           | fungible or non fungible token collection                                                      | true \| false     |
| openSeaSlug  | string (optional) | An optional additional field which helps identify token collections featured on OpenSea        | string (optional) |
| abi          | string (optional) | If working with Smart Contracts this field can be utilised to add a reference to your abi file | string (optional) |

Non Fungible Token example issuer configuration:

```
const onChainNonFungibleIssuer = {
	onChain: true,
	collectionID: "expansion-punks",
	blockchain: "evm",
	chain: "eth",
	fungible: false,
	contract: "0x0d0167a823c6619d430b1a96ad85b888bcf97c37",
	openSeaSlug: "expansion-punks"
};
```

Fungible Token example issuer configuration:

```
const onChainFungibleIssuer = {
	onChain: true,
	collectionID: "USX",
	blockchain: "evm",
	chain: "matic",
	fungible: true,
	contract: "0x107065a122f92636a1358a70a0efe0f1a080a7e5"
};
```

**Tip 💡**

To verify Smart Contract information use EVM Blockchain Explorer websites which include:

* <https://etherscan.io>
* <https://bscscan.com>
* <https://polygonscan.com>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://tokenscript.gitbook.io/token-negotiator/learn/issuer-configurations/issuer-configuration-evm.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
