diff --git a/example-next/src/components/Tokens.tsx b/example-next/src/components/Tokens.tsx index 043cb154..ffcb367c 100644 --- a/example-next/src/components/Tokens.tsx +++ b/example-next/src/components/Tokens.tsx @@ -62,7 +62,7 @@ const tokens: TokenMetadata[] = [ decimals: 6, name: 'OSMO', symbol: 'OSMO', - chainId: 'osmosis', + chainId: 'osmosis-1', }, { address: ETH_ADDRESS, diff --git a/example/src/components/Tokens.tsx b/example/src/components/Tokens.tsx index 99b5da41..ffcb367c 100644 --- a/example/src/components/Tokens.tsx +++ b/example/src/components/Tokens.tsx @@ -57,6 +57,13 @@ export const Token = (token: TokenMetadata) => { }; const tokens: TokenMetadata[] = [ + { + address: 'uosmo', + decimals: 6, + name: 'OSMO', + symbol: 'OSMO', + chainId: 'osmosis-1', + }, { address: ETH_ADDRESS, decimals: 18, @@ -65,7 +72,7 @@ const tokens: TokenMetadata[] = [ chainId: '1', }, { - address: ETH_ADDRESS, + address: '', decimals: 18, name: 'Polygon MATIC', symbol: 'MATIC', @@ -134,6 +141,20 @@ const tokens: TokenMetadata[] = [ symbol: 'USDC', chainId: 'alephZero', }, + { + address: ETH_ADDRESS, + decimals: 9, + name: 'Toncoin', + symbol: 'TON', + chainId: '-239', + }, + { + address: 'EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs', + decimals: 6, + name: 'Tether USD', + symbol: 'USDT', + chainId: '-239', + }, ]; export default Tokens;