Skip to content

Commit

Permalink
fix: osmosis chain id
Browse files Browse the repository at this point in the history
  • Loading branch information
jayeshbhole-rp committed Oct 17, 2024
1 parent fc62922 commit 2327bf3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example-next/src/components/Tokens.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const tokens: TokenMetadata[] = [
decimals: 6,
name: 'OSMO',
symbol: 'OSMO',
chainId: 'osmosis',
chainId: 'osmosis-1',
},
{
address: ETH_ADDRESS,
Expand Down
23 changes: 22 additions & 1 deletion example/src/components/Tokens.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -65,7 +72,7 @@ const tokens: TokenMetadata[] = [
chainId: '1',
},
{
address: ETH_ADDRESS,
address: '',
decimals: 18,
name: 'Polygon MATIC',
symbol: 'MATIC',
Expand Down Expand Up @@ -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;

0 comments on commit 2327bf3

Please sign in to comment.