Skip to content

Commit

Permalink
feat: add wrapped gas for ARBT (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasmoeller committed Apr 26, 2022
1 parent a3d6e62 commit 2c2d5f8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1274,6 +1274,17 @@ export const wrappedTokens: { [ChainId: string]: Token } = {
name: 'WRAPPED ONE',
logoURI: 'https://d1xrz6ki9z98vb.cloudfront.net/venomswap/tokens/WONE.png',
},
[ChainId.ARBT]: {
// https://testnet.arbiscan.io/token/0xB47e6A5f8b33b3F17603C83a0535A9dcD7E32681
address: '0xB47e6A5f8b33b3F17603C83a0535A9dcD7E32681',
symbol: 'WETH',
decimals: 18,
chainId: ChainId.ARBT,
coinKey: CoinKey.WETH,
name: 'WETH',
logoURI:
'https://zapper.fi/images/networks/ethereum/0x0000000000000000000000000000000000000000.png',
},
}

export const findDefaultCoin = (coinKey: CoinKey): Coin => {
Expand Down

0 comments on commit 2c2d5f8

Please sign in to comment.