Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#724 - add token list #754

Merged
merged 2 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 4 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Code Standard Checks

on: pull_request
on:
pull_request:
paths:
- '!apps/token-list/**'

jobs:
linter:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Package Clean Up

on:
pull_request:
paths:
- '!apps/token-list/**'
types: [closed]

jobs:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Portal Bridge [Preview]

on: pull_request
on:
pull_request:
paths:
- '!apps/token-list/**'

jobs:
branch-sha:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/test-token-list.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test Token List

on:
pull_request:
paths:
- 'apps/token-list/**'

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/token-list
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm test
5 changes: 4 additions & 1 deletion .github/workflows/testnet.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Portal Bridge [Testnet]

on: pull_request
on:
pull_request:
paths:
- '!apps/token-list/**'

jobs:
branch-sha:
Expand Down
50 changes: 50 additions & 0 deletions .github/workflows/update-token-list.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Update Token List Content

on:
workflow_dispatch:
push:
branches:
- "*"
- "!main"
paths:
- 'apps/token-list/**'

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/token-list
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12

- name: Install python dependencies
run: python -m pip install -r requirements.txt

- name: Update logos
run: npm run gen-logos

- name: Update content
run: npm run gen

- name: Install node dependencies
run: npm ci

- name: Test updated files
run: npm test

- name: Check for modified files
id: git-check
run: echo ::set-output name=modified::$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)

- name: Update changes in GitHub repository
if: steps.git-check.outputs.modified == 'true'
run: |
git config --global user.name 'WormholeBot'
git config --global user.email '[email protected]'
git add -A
git commit -m '[automated] update content'
git push
39 changes: 39 additions & 0 deletions apps/token-list/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# python
*.pyc

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# IDE
.idea

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

# ethereum contracts
/contracts
/src/ethers-contracts

# tsproto output
/src/proto

# build
/lib
42 changes: 42 additions & 0 deletions apps/token-list/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Wormhole Token List

## Update instructions

- [Update instructions](updating.md)

## Reference information for humans

Known token addresses by destination chain:

- to [Solana](content/dest_solana.md)
- to [Ethereum](content/dest_ethereum.md)
- to [BSC](content/dest_bsc.md)
- to [Terra](content/dest_terra.md)
- to [Polygon](content/dest_polygon.md)
- to [Avalanche](content/dest_avalanche.md)
- to [Oasis](content/dest_oasis.md)
- to [Celo](content/dest_celo.md)
- to [Algorand](content/dest_algorand.md)
- to [Arbitrum](content/dest_arbitrum.md)
- to [Fantom](content/dest_fantom.md)
- to [Injective](content/dest_injective.md)
- to [Moonbeam](content/dest_moonbeam.md)
- to [Aptos](content/dest_aptos.md)

Resultant wrapped-asset addresses by source chain:

- from [Solana](content/source_solana.md)
- from [Ethereum](content/source_ethereum.md)
- from [BSC](content/source_bsc.md)
- from [Terra](content/source_terra.md)
- from [Polygon](content/source_polygon.md)
- from [Avalanche](content/source_avalanche.md)
- from [Oasis](content/source_oasis.md)
- from [Celo](content/source_celo.md)
- from [Fantom](content/source_fantom.md)
- from [Near](content/source_near.md)

## CSV (use raw version)

- [by_dest.csv](content/by_dest.csv)
- [by_source.csv](content/by_source.csv)
Binary file added apps/token-list/assets/1INCH_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/1INCH_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/1SOL_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/1SOL_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AAVE_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AAVE_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AKRO_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AKRO_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/ALEPH_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/ALEPH_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/ALICE_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/ALICE_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AMPL_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AMPL_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AMP_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AMP_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/ANKR_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/ANKR_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/ATLAS_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/ATLAS_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AUDIO_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AUDIO_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AURY_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AURY_wh_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AVAX_wh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/token-list/assets/AVAX_wh_small.png
Binary file added apps/token-list/assets/AXSet_wh.png
Binary file added apps/token-list/assets/AXSet_wh_small.png
Binary file added apps/token-list/assets/BAT_wh.png
Binary file added apps/token-list/assets/BAT_wh_small.png
Binary file added apps/token-list/assets/BKN_wh.png
Binary file added apps/token-list/assets/BKN_wh_small.png
Binary file added apps/token-list/assets/BNB_wh.png
Binary file added apps/token-list/assets/BNB_wh_small.png
Binary file added apps/token-list/assets/BNT_wh.png
Binary file added apps/token-list/assets/BNT_wh_small.png
Binary file added apps/token-list/assets/BONK_wh.png
Binary file added apps/token-list/assets/BONK_wh_small.png
Binary file added apps/token-list/assets/BUSDbs_wh.png
Binary file added apps/token-list/assets/BUSDbs_wh_small.png
Binary file added apps/token-list/assets/BUSDet_wh.png
Binary file added apps/token-list/assets/BUSDet_wh_small.png
Binary file added apps/token-list/assets/CAKE_wh.png
Binary file added apps/token-list/assets/CAKE_wh_small.png
Binary file added apps/token-list/assets/CEL_wh.png
Binary file added apps/token-list/assets/CEL_wh_small.png
Binary file added apps/token-list/assets/CHAI_wh.png
Binary file added apps/token-list/assets/CHAI_wh_small.png
Binary file added apps/token-list/assets/CHZ_wh.png
Binary file added apps/token-list/assets/CHZ_wh_small.png
Binary file added apps/token-list/assets/COMP_wh.png
Binary file added apps/token-list/assets/COMP_wh_small.png
Binary file added apps/token-list/assets/CREAM_wh.png
Binary file added apps/token-list/assets/CREAM_wh_small.png
Binary file added apps/token-list/assets/CRO_wh.png
Binary file added apps/token-list/assets/CRO_wh_small.png
Binary file added apps/token-list/assets/CRV_wh.png
Binary file added apps/token-list/assets/CRV_wh_small.png
Binary file added apps/token-list/assets/CVX_wh.png
Binary file added apps/token-list/assets/CVX_wh_small.png
Binary file added apps/token-list/assets/DAI_wh.png
Binary file added apps/token-list/assets/DAI_wh_small.png
Binary file added apps/token-list/assets/DAIpo_wh.png
Binary file added apps/token-list/assets/DAIpo_wh_small.png
Binary file added apps/token-list/assets/DEXE_wh.png
Binary file added apps/token-list/assets/DEXE_wh_small.png
Binary file added apps/token-list/assets/DIMO_wh.png
Binary file added apps/token-list/assets/DIMO_wh_small.png
Binary file added apps/token-list/assets/DYDX_wh.png
Binary file added apps/token-list/assets/DYDX_wh_small.png
Binary file added apps/token-list/assets/ELON_wh.png
Binary file added apps/token-list/assets/ELON_wh_small.png
Binary file added apps/token-list/assets/ENJ_wh.png
Binary file added apps/token-list/assets/ENJ_wh_small.png
Binary file added apps/token-list/assets/ENS_wh.png
Binary file added apps/token-list/assets/ENS_wh_small.png
Binary file added apps/token-list/assets/ETHIX_wh.png
Binary file added apps/token-list/assets/ETHIX_wh_small.png
Binary file added apps/token-list/assets/ETH_wh.png
Binary file added apps/token-list/assets/ETH_wh_small.png
Binary file added apps/token-list/assets/EURC_wh.png
Binary file added apps/token-list/assets/EURC_wh_small.png
Binary file added apps/token-list/assets/FRAX_wh.png
Binary file added apps/token-list/assets/FRAX_wh_small.png
Binary file added apps/token-list/assets/FRONT_wh.png
Binary file added apps/token-list/assets/FRONT_wh_small.png
Binary file added apps/token-list/assets/FTM_wh.png
Binary file added apps/token-list/assets/FTM_wh_small.png
Binary file added apps/token-list/assets/FTMet_wh.png
Binary file added apps/token-list/assets/FTMet_wh_small.png
Binary file added apps/token-list/assets/FTT_wh.png
Binary file added apps/token-list/assets/FTT_wh_small.png
Binary file added apps/token-list/assets/FXS_wh.png
Binary file added apps/token-list/assets/FXS_wh_small.png
Binary file added apps/token-list/assets/GALA_wh.png
Binary file added apps/token-list/assets/GALA_wh_small.png
Binary file added apps/token-list/assets/GRT_wh.png
Binary file added apps/token-list/assets/GRT_wh_small.png
Binary file added apps/token-list/assets/GT_wh.png
Binary file added apps/token-list/assets/GT_wh_small.png
Binary file added apps/token-list/assets/HBTC_wh.png
Binary file added apps/token-list/assets/HBTC_wh_small.png
Binary file added apps/token-list/assets/HGET_wh.png
Binary file added apps/token-list/assets/HGET_wh_small.png
Binary file added apps/token-list/assets/HOOD_wh.png
Binary file added apps/token-list/assets/HOOD_wh_small.png
Binary file added apps/token-list/assets/HUSD_wh.png
Binary file added apps/token-list/assets/HUSD_wh_small.png
Binary file added apps/token-list/assets/HXRO_wh.png
Binary file added apps/token-list/assets/HXRO_wh_small.png
Binary file added apps/token-list/assets/ICE_wh.png
Binary file added apps/token-list/assets/ICE_wh_small.png
Binary file added apps/token-list/assets/ILV_wh.png
Binary file added apps/token-list/assets/ILV_wh_small.png
Binary file added apps/token-list/assets/JOE_wh.png
Binary file added apps/token-list/assets/JOE_wh_small.png
Binary file added apps/token-list/assets/KEEP_wh.png
Binary file added apps/token-list/assets/KEEP_wh_small.png
Binary file added apps/token-list/assets/KING_wh.png
Binary file added apps/token-list/assets/KING_wh_small.png
Binary file added apps/token-list/assets/KIN_wh.png
Binary file added apps/token-list/assets/KIN_wh_small.png
Binary file added apps/token-list/assets/KP3R_wh.png
Binary file added apps/token-list/assets/KP3R_wh_small.png
Binary file added apps/token-list/assets/LDO_wh.png
Binary file added apps/token-list/assets/LDO_wh_small.png
Binary file added apps/token-list/assets/LINK_wh.png
Binary file added apps/token-list/assets/LINK_wh_small.png
Binary file added apps/token-list/assets/LRC_wh.png
Binary file added apps/token-list/assets/LRC_wh_small.png
Binary file added apps/token-list/assets/LUA_wh.png
Binary file added apps/token-list/assets/LUA_wh_small.png
Binary file added apps/token-list/assets/LUNA_wh.png
Binary file added apps/token-list/assets/LUNA_wh_small.png
Binary file added apps/token-list/assets/MANA_wh.png
Binary file added apps/token-list/assets/MANA_wh_small.png
Binary file added apps/token-list/assets/MATH_wh.png
Binary file added apps/token-list/assets/MATH_wh_small.png
Binary file added apps/token-list/assets/MATICet_wh.png
Binary file added apps/token-list/assets/MATICet_wh_small.png
Binary file added apps/token-list/assets/MATICpo_wh.png
Binary file added apps/token-list/assets/MATICpo_wh_small.png
Binary file added apps/token-list/assets/MGP_wh.png
Binary file added apps/token-list/assets/MGP_wh_small.png
Binary file added apps/token-list/assets/MIMet_wh.png
Binary file added apps/token-list/assets/MIMet_wh_small.png
Binary file added apps/token-list/assets/NXM_wh.png
Binary file added apps/token-list/assets/NXM_wh_small.png
Binary file added apps/token-list/assets/ORION_wh.png
Binary file added apps/token-list/assets/ORION_wh_small.png
Binary file added apps/token-list/assets/PAXG_wh.png
Binary file added apps/token-list/assets/PAXG_wh_small.png
Binary file added apps/token-list/assets/PENDLE_wh.png
Binary file added apps/token-list/assets/PENDLE_wh_small.png
Binary file added apps/token-list/assets/PEOPLE_wh.png
Binary file added apps/token-list/assets/PEOPLE_wh_small.png
Binary file added apps/token-list/assets/PERP_wh.png
Binary file added apps/token-list/assets/PERP_wh_small.png
Binary file added apps/token-list/assets/PYTH_wh.png
Binary file added apps/token-list/assets/PYTH_wh_small.png
Binary file added apps/token-list/assets/QUICK_wh.png
Binary file added apps/token-list/assets/QUICK_wh_small.png
Binary file added apps/token-list/assets/QUO_wh.png
Binary file added apps/token-list/assets/QUO_wh_small.png
Binary file added apps/token-list/assets/RAY_wh.png
Binary file added apps/token-list/assets/RAY_wh_small.png
Binary file added apps/token-list/assets/RGT_wh.png
Binary file added apps/token-list/assets/RGT_wh_small.png
Binary file added apps/token-list/assets/ROSE_wh.png
Binary file added apps/token-list/assets/ROSE_wh_small.png
Binary file added apps/token-list/assets/RPL_wh.png
Binary file added apps/token-list/assets/RPL_wh_small.png
Binary file added apps/token-list/assets/RSR_wh.png
Binary file added apps/token-list/assets/RSR_wh_small.png
Binary file added apps/token-list/assets/SAND_wh.png
Binary file added apps/token-list/assets/SAND_wh_small.png
Binary file added apps/token-list/assets/SBR_wh.png
Binary file added apps/token-list/assets/SBR_wh_small.png
Binary file added apps/token-list/assets/SD_wh.png
Binary file added apps/token-list/assets/SD_wh_small.png
Binary file added apps/token-list/assets/SHIB_wh.png
Binary file added apps/token-list/assets/SHIB_wh_small.png
Binary file added apps/token-list/assets/SLP_wh.png
Binary file added apps/token-list/assets/SLP_wh_small.png
Binary file added apps/token-list/assets/SNX_wh.png
Binary file added apps/token-list/assets/SNX_wh_small.png
Binary file added apps/token-list/assets/SOL_wh.png
Binary file added apps/token-list/assets/SOL_wh_small.png
Binary file added apps/token-list/assets/SOS_wh.png
Binary file added apps/token-list/assets/SOS_wh_small.png
Binary file added apps/token-list/assets/SPELL_wh.png
Binary file added apps/token-list/assets/SPELL_wh_small.png
Binary file added apps/token-list/assets/SPX6900_wh.png
Binary file added apps/token-list/assets/SPX6900_wh_small.png
Binary file added apps/token-list/assets/SRMet_wh.png
Binary file added apps/token-list/assets/SRMet_wh_small.png
Binary file added apps/token-list/assets/SRMso_wh.png
Binary file added apps/token-list/assets/SRMso_wh_small.png
Binary file added apps/token-list/assets/SUSHI_wh.png
Binary file added apps/token-list/assets/SUSHI_wh_small.png
Binary file added apps/token-list/assets/SWAG_wh.png
Binary file added apps/token-list/assets/SWAG_wh_small.png
Binary file added apps/token-list/assets/SWEAT_wh.png
Binary file added apps/token-list/assets/SWEAT_wh_small.png
Binary file added apps/token-list/assets/SXP_wh.png
Binary file added apps/token-list/assets/SXP_wh_small.png
Binary file added apps/token-list/assets/TBTC_wh.png
Binary file added apps/token-list/assets/TBTC_wh_small.png
Binary file added apps/token-list/assets/TOKE_wh.png
Binary file added apps/token-list/assets/TOKE_wh_small.png
Binary file added apps/token-list/assets/TRIBE_wh.png
Binary file added apps/token-list/assets/TRIBE_wh_small.png
Binary file added apps/token-list/assets/T_wh.png
Binary file added apps/token-list/assets/T_wh_small.png
Binary file added apps/token-list/assets/UBXT_wh.png
Binary file added apps/token-list/assets/UBXT_wh_small.png
Binary file added apps/token-list/assets/UFO_wh.png
Binary file added apps/token-list/assets/UFO_wh_small.png
Binary file added apps/token-list/assets/UNI_wh.png
Binary file added apps/token-list/assets/UNI_wh_small.png
Binary file added apps/token-list/assets/UNW_wh.png
Binary file added apps/token-list/assets/UNW_wh_small.png
Binary file added apps/token-list/assets/USDCav_wh.png
Binary file added apps/token-list/assets/USDCav_wh_small.png
Binary file added apps/token-list/assets/USDCbs_wh.png
Binary file added apps/token-list/assets/USDCbs_wh_small.png
Binary file added apps/token-list/assets/USDCeav_wh.png
Binary file added apps/token-list/assets/USDCeav_wh_small.png
Binary file added apps/token-list/assets/USDCet_wh.png
Binary file added apps/token-list/assets/USDCet_wh_small.png
Binary file added apps/token-list/assets/USDCpo_wh.png
Binary file added apps/token-list/assets/USDCpo_wh_small.png
Binary file added apps/token-list/assets/USDCso_wh.png
Binary file added apps/token-list/assets/USDCso_wh_small.png
Binary file added apps/token-list/assets/USDEBT_wh.png
Binary file added apps/token-list/assets/USDEBT_wh_small.png
Binary file added apps/token-list/assets/USDK_wh.png
Binary file added apps/token-list/assets/USDK_wh_small.png
Binary file added apps/token-list/assets/USDTav_wh.png
Binary file added apps/token-list/assets/USDTav_wh_small.png
Binary file added apps/token-list/assets/USDTbs_wh.png
Binary file added apps/token-list/assets/USDTbs_wh_small.png
Binary file added apps/token-list/assets/USDTeav_wh.png
Binary file added apps/token-list/assets/USDTeav_wh_small.png
Binary file added apps/token-list/assets/USDTet_wh.png
Binary file added apps/token-list/assets/USDTet_wh_small.png
Binary file added apps/token-list/assets/USDTpo_wh.png
Binary file added apps/token-list/assets/USDTpo_wh_small.png
Binary file added apps/token-list/assets/USDTso_wh.png
Binary file added apps/token-list/assets/USDTso_wh_small.png
Binary file added apps/token-list/assets/UST_wh.png
Binary file added apps/token-list/assets/UST_wh_small.png
Binary file added apps/token-list/assets/WBTC_wh.png
Binary file added apps/token-list/assets/WBTC_wh_small.png
Binary file added apps/token-list/assets/WELL_wh.png
Binary file added apps/token-list/assets/WELL_wh_small.png
Binary file added apps/token-list/assets/WMX_wh.png
Binary file added apps/token-list/assets/WMX_wh_small.png
Binary file added apps/token-list/assets/WOM_wh.png
Binary file added apps/token-list/assets/WOM_wh_small.png
Binary file added apps/token-list/assets/XCAD_wh.png
Binary file added apps/token-list/assets/XCAD_wh_small.png
Binary file added apps/token-list/assets/XTAG_wh.png
Binary file added apps/token-list/assets/XTAG_wh_small.png
Binary file added apps/token-list/assets/YFI_wh.png
Binary file added apps/token-list/assets/YFI_wh_small.png
Binary file added apps/token-list/assets/YGG_wh.png
Binary file added apps/token-list/assets/YGG_wh_small.png
Binary file added apps/token-list/assets/ZBC_wh.png
Binary file added apps/token-list/assets/ZBC_wh_small.png
Binary file added apps/token-list/assets/ZEBEC_wh.png
Binary file added apps/token-list/assets/ZEBEC_wh_small.png
Binary file added apps/token-list/assets/ZRX_wh.png
Binary file added apps/token-list/assets/ZRX_wh_small.png
Binary file added apps/token-list/assets/aUST_wh.png
Binary file added apps/token-list/assets/aUST_wh_small.png
Binary file added apps/token-list/assets/agEUR_wh.png
Binary file added apps/token-list/assets/agEUR_wh_small.png
Loading
Loading