The Optimism token list is used as the source of truth for the Optimism Gateway which is the main portal for moving assets between Layer 1 and Layer 2.
Create a folder inside of the data folder with the same name as the symbol of the token you are trying to add. For example, if you are adding a token with the symbol "ETH" you must create a folder called ETH.
Add a logo to the data folder you just created. Your logo MUST be an SVG called logo.svg
. Your logo should be at least 200x200 pt minimum and 256x256 pt preferred.
Add a file to your folder called data.json
with the following format:
{
"name": "Token Name",
"symbol": "SYMBOL",
"decimals": 18,
"description": "A multi-chain token",
"website": "https://token.com",
"twitter": "@token",
"tokens": {
"ethereum": {
"address": "0x1234123412341234123412341234123412341234"
},
"optimism": {
"address": "0x2345234523452345234523452345234523452345"
},
"kovan": {
"address": "0x3456345634563456345634563456345634563456"
},
"optimism-kovan": {
"address": "0x4567456745674567456745674567456745674567"
},
"goerli": {
"address": "0x5678567856785678567856785678567856785678"
},
"optimism-goerli": {
"address": "0x6789678967896789678967896789678967896789"
}
}
}
Please include the token addresses for all chains where the token you are submitting has been deployed. We currently accept tokens on the following chains:
ethereum
optimism
kovan
optimism-kovan
goerli
optimism-goerli
If you would like to add your token to this token list but you do not want your token to be included on the Optimism Bridge app, please include the nobridge
option.
{
"name": "Token Name",
"symbol": "SYMBOL",
"decimals": 18,
"description": "A multi-chain token",
"website": "https://token.com",
"twitter": "@token",
"nobridge": true,
"tokens": {
...
}
}
If your token is not a standard ERC20 (e.g., DSToken), please include the nonstandard
option.
{
"name": "Token Name",
"symbol": "SYMBOL",
"decimals": 18,
"description": "A multi-chain token",
"website": "https://token.com",
"twitter": "@token",
"nonstandard": true,
"tokens": {
...
}
}
If you require overrides for specific tokens, you can include the overrides
field. You are able to override the name
, symbol
, decimals
, or bridge
for any token. You do not need to override every token at the same time.
{
"name": "Token Name",
"symbol": "SYMBOL",
"decimals": 18,
"description": "A multi-chain token",
"website": "https://token.com",
"twitter": "@token",
"tokens": {
"ethereum": {
"address": "0x1234123412341234123412341234123412341234",
"overrides": {
"name": "My Ethereum Token"
}
},
"optimism": {
"address": "0x2345234523452345234523452345234523452345",
"overrides": {
"bridge": "0x1111111111111111111111111111111111111111"
}
}
}
}
Open a pull request with the changes that you've made. Please only add one token per pull request to simplify the review process. This means two new files inside of one new folder. If you want to add multiple tokens, please open different PRs for each token.
Your pull request will be validated by a series of automated checks. If one of these checks fails, please resolve these issues and make sure that validation succeeds. We will review your pull request for final approval once automated validation succeeds.
Once your PR is merged, the token list will update automatically to include your token. Please do NOT update the token list directly. All token list updates are handled automatically when PRs are merged into the master
branch.