A community-maintained token list for Taho, the community-owned wallet.
The JSON schema represents the technical specification for a token list which can be used in a dApp interface, such as the Taho wallet.
The schema is based upon the uniswap token list implementation standard
Uniswap Token Lists is a specification for lists of token metadata (e.g. address, decimals, ...) that can be used by any dApp interfaces that needs one or more lists of tokens.
Anyone can create and maintain a token list, as long as they follow the specification.
Specifically an instance of a token list is a JSON blob that contains a list of ERC20 token metadata for use in dApp user interfaces. Token list JSON must validate against the JSON schema in order to be used in the Uniswap Interface. Tokens on token lists, and token lists themselves, are tagged so that users can easily find tokens.
The JSON schema ID is https://uniswap.org/tokenlist.schema.json
Taho aggregates the tokens that are reputable and vetoed by using some of the lists from well establised protocols like Uniswap , Yearn, Messari and more.
The lists can be found here
The intention of the Taho list is to empower users to add tokens that the community cares about, are added to these lists slowly or that have bad metadata on other lists.
Taho is a community run DAO and welcomes contributions from anyone. If you would like to add tokens to this list, you may do the following steps:
git clone https://github.com/tahowallet/token-list
Verify the token is not already on the list
Create a branch add-[token you are adding]-token.
git checkout -b add-0xBitcoin-token
OxBitcoin token
to the list "tokens": [
{
"address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"chainId": 1,
"name": "Wrapped Ether",
"symbol": "WETH",
"decimals": 18
},
{
"address": "0xB6eD7644C69416d67B522e20bC294A9a9B405B31",
"chainId": 1,
"name": "0xBitcoin Token",
"symbol": "0xBTC",
"decimals": 8
},
{
"address": "0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d",
"chainId": 1,
"name": "Aave Interest bearing DAI",
"symbol": "aDAI",
"decimals": 18
}]
git add .
git commit -m 'add new token'
git push --set-upstream origin add-[token you are adding]-token
Although not mandatory, it is good to add a token image to have the appropriate logo appear in the Taho wallet.
The image should be in png format and should have 128 × 128 dimensions. The naming should be <tokensymbol>.png
and a link to the image should be located in
the token schema that you are adding. Below is an example of adding LOOKS token.
"address": "0xf4d2888d29d722226fafa5d9b24f9164c092421e",
"chainId": 1,
"name": "Looks Token",
"symbol": "LOOKS",
"decimals": 18,
"logoURI" : "https://github.com/tahowallet/token-list/images/looks.png"
}