> 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-solana.md).

# Issuer Configuration Solana

Parameters to create a configuration for Solana 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        |
| collectionAddress | string  | token collection address                                                                     | string        |
| updateAuthority   | string  | update authority address                                                                     | string        |
| tokenProgram      | string  | token program utilised by the collection                                                     | string        |
| symbol            | string  | token collection Symbol                                                                      | string        |

Non Fungible Token example issuer configuration:

```
const onChainIssuer = {
            collectionID: "penthouse-panther-club",
            collectionAddress: "ff846ef2eed57e5367cf8826e63f4d53fe28d28aa67417accb6e4b48cbd19136",
            updateAuthority: "92oYPmrr1BHznizuZmpKZ3MFRadMFYRTCxo9Pf34mZKX",
            tokenProgram: "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA",
            onChain: true,
            symbol: "PPC",
            chain: "mainnet",
            blockchain: "solana",
};
```

**Tip 💡**

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

* <https://www.okx.com/explorer/sol>
* <https://explorer.solana.com>
* <https://solscan.io>


---

# 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:

```
GET https://tokenscript.gitbook.io/token-negotiator/learn/issuer-configurations/issuer-configuration-solana.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.
