-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from IndexCoop/feat/add-base
feat: add base
- Loading branch information
Showing
4 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import {TokenData} from '../../types'; | ||
|
||
export const INDEX_COOP_BASE_TOKENS: TokenData[] = [ | ||
{ | ||
address: '0xC884646E6C88d9b172a23051b38B0732Cc3E35a6', | ||
chainId: 8453, | ||
name: 'Index Coop Ethereum 2x Index', | ||
symbol: 'ETH2X', | ||
decimals: 18, | ||
logoURI: 'https://index-app.vercel.app/assets/eth2x.png', | ||
}, | ||
{ | ||
address: '0x329f6656792c7d34D0fBB9762FA9A8F852272acb', | ||
chainId: 8453, | ||
name: 'Index Coop Ethereum 3x Index', | ||
symbol: 'ETH3X', | ||
decimals: 18, | ||
logoURI: 'https://index-app.vercel.app/assets/eth3x.png', | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +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 = [...BASE, ...INDEX_COOP_BASE_TOKENS]; |