wormhole-token-list/README.md

58 lines
1.6 KiB
Markdown
Raw Normal View History

2021-11-19 21:25:19 -08:00
# Wormhole Token List
## Updating
> If you need to validate addresses between chains, use the [Token Origin Verifier](https://wormholebridge.com/#/token-origin-verifier)
In `markets.json` add an entry to the corresponding source chain, target chain, and address in `tokenMarkets`.
For example, if there were new Raydium and Tulip pools for (Ethereum) SHIB on Solana, I would go to:
```javascript
"tokenMarkets": { // <-- this key is already in the file
"2": { // <-- source chain (may already be in the file)
"1": { // <-- target chain (may already be in the file)
"0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE": { // <-- asset address on source chain, corresponds to a key in "tokens" -> "2" (the source chain}
"markets": ["raydium", "tulip"] // <-- list of markets, corresponds to the keys in "markets"
}
}
}
}
```
All addresses must have a corresponding entry in `tokens` and all markets must have a corresponding entry in `markets`. (The tests should ensure this.)
For this example, I might have to add:
```javascript
"markets": { // <-- this key is already in the file
"raydium": {
"name": "Raydium",
"link": "https://raydium.io/swap/"
}
}
```
and
```javascript
"tokens": { // <-- this key is already in the file
"0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE": {
"symbol": "SHIB",
"logo": "https://etherscan.io/token/images/shibatoken_32.png"
}
}
```
2021-11-19 21:38:58 -08:00
### Chain Ids
This file uses the Wormhole chain ids to reference the chains. For reference, these are:
```python
Solana = 1
Ethereum = 2
Terra = 3
Binance Smart Chain = 4
Polygon = 5
```