Untitled

Ajna (Static) tokenList - SmolDapp

About the tokenlist

In order to get your tokens added to the ajnafi.com UI, in the Select Token modal, your token must be added to the official Ajna Static Token list. However, a few rules must be observed for your request to be accepted:

Steps

  1. Clone repo https://github.com/SmolDapp/tokenLists
  2. Navigate to the /generators/static/ajna-static.go file (https://github.com/SmolDapp/tokenLists/blob/main/generators/static/ajna-static.go)
  3. Update the timestamp on line 6
  4. Add a new line to the corresponding network object (*1 for mainnet, 10 for optimism etc. You can find the chain ID here: https://chainlist.org/*) with the following template AT THE END of the network list.
// For a single new token
{common.HexToAddress(`ADDRESS OF YOUR TOKEN`), `HTTPS LINK TO YOUR TOKEN IMAGE`},

// For a new chain and a new token, where 10 is an example corresponding to the chain we want to add
10: {
	{common.HexToAddress(`ADDRESS OF YOUR TOKEN`), `HTTPS LINK TO YOUR TOKEN IMAGE`},
},
  1. Save the file, submit the PR and wait for a review from MOM team

<aside> 💡 All verifications are done by human. Your PR will probably not be merged right away. Please be patient.

</aside>

Example

You can find an example of a PR to add a token to the AJNA list here:

https://github.com/SmolDapp/tokenLists/pull/10