Submit token info
Auro Wallet will support the transfer of token assets submitted by default.
1. Add token information by updating the token.json file (in the corresponding network). Do not change the order.
token.json file (in the corresponding network). Do not change the order.// This is an example submission
{
"id": "xLpobAxWSYZeyKuiEb4kzHHYQKn6X1vKmFR4Dmz9TCADLrYTD1", // token id
"address": "B62qmMv99rMLCjnApLERcvof6fP4YD4wqeCXUrFuthHfTNoHbYgmy1i", // token address
"name": "TEST", // token name
"symbol": "7UjV6", // token symbol
"decimal": "6", // token decimal
"description": "Auro test token in Mainnet", // Optional. token description
"website":"https://www.aurowallet.com/", // Optional.
"fungibleTokenVersion": "1.1.0" // Optional.
}`fungibleTokenVersion` is an optional field.
The content should be one of the version fields in https://www.npmjs.com/package/mina-fungible-token
The content is the version of mina-fungible-token currently in use.
Auro Wallet uses the latest version by default.
- If set, Auro Wallet will use the target version of the mina-fungible-token.
- If not set, the latest mina-fungible-token will be used by default.
Custom tokens `do not need` to set fungibleTokenVersion.2. Create a folder with the token ID and add your token icon to {networkID}/assets/{tokenID}/icon.png.
{networkID}/assets/{tokenID}/icon.png.3. Send token for testing
4. Provide the token contract source code (Optional)
5. Verify Token Ownership
6. Make a PR
Last updated