Skip to content

Commit

Permalink
feat: add base tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
janndriessen committed Aug 29, 2024
1 parent b288af8 commit 62a1210
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
38 changes: 38 additions & 0 deletions src/lists/base/base.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import {TokenData} from '../../types';

export const BASE: TokenData[] = [
{
name: 'Dai Stablecoin',
address: '0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb',
symbol: 'DAI',
decimals: 18,
chainId: 8453,
logoURI: 'https://assets.coingecko.com/coins/images/9956/large/4943.png',
},
{
name: 'USD Base Coin',
address: '0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA',
symbol: 'USDbC',
decimals: 6,
chainId: 8453,
logoURI:
'https://assets.coingecko.com/coins/images/31164/large/baseusdc.jpg',
},
{
name: 'USD Coin',
address: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
symbol: 'USDC',
decimals: 6,
chainId: 8453,
logoURI:
'https://assets.coingecko.com/coins/images/6319/large/USD_Coin_icon.png',
},
{
name: 'Wrapped Ether',
address: '0x4200000000000000000000000000000000000006',
symbol: 'WETH',
decimals: 18,
chainId: 8453,
logoURI: 'https://assets.coingecko.com/coins/images/2518/large/weth.png',
},
];
3 changes: 2 additions & 1 deletion src/lists/base/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {BASE} from './base';
import {INDEX_COOP_BASE_TOKENS} from './index-tokens';

export {INDEX_COOP_BASE_TOKENS} from './index-tokens';

export const BASE_TOKENS = [...INDEX_COOP_BASE_TOKENS];
export const BASE_TOKENS = [...BASE, ...INDEX_COOP_BASE_TOKENS];

0 comments on commit 62a1210

Please sign in to comment.