Skip to content

Commit

Permalink
Merge pull request #13 from IndexCoop/feat/ic21-token
Browse files Browse the repository at this point in the history
feat: IC21 token
  • Loading branch information
0xonramp authored Sep 11, 2023
2 parents ce7149f + c45f0ad commit e27329e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
awscli*
dist/bundle*
.env
2 changes: 1 addition & 1 deletion dist/index-web-widgets.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "index-web-widgets",
"version": "1.8.0",
"version": "1.10.0",
"description": "",
"main": "dist/index-web-widgets.js",
"scripts": {
Expand Down
18 changes: 18 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,13 +250,31 @@ export const MoneyMarketIndex: Token = {
defaultChain: MAINNET.chainId,
};

export const ic21Index: Token = {
name: 'Index Coop Large Cap Index',
symbol: 'ic21',
image: 'https://app.indexcoop.com/assets/ic21_logo.svg',
address: '0x1B5E16C5b20Fb5EE87C61fE9Afe735Cca3B21A65',
polygonAddress: undefined,
optimismAddress: undefined,
decimals: 18,
url: 'ic21',
coingeckoId: 'large-cap-index-ic21',
tokensetsId: '',
fees: undefined,
isDangerous: true,
indexTypes: [IndexType.thematic],
defaultChain: MAINNET.chainId,
};

export const ProductTokensBySymbol = {
BED: BedIndex,
BTCFLI: Bitcoin2xFlexibleLeverageIndex,
DPI: DefiPulseIndex,
DSETH: DiversifiedStakedETHIndex,
ETHFLI: Ethereum2xFlexibleLeverageIndex,
GTCETH: GitcoinStakedETHIndex,
IC21: ic21Index,
ICETH: icETHIndex,
INDEX: IndexToken,
ICSMMT: MoneyMarketIndex,
Expand Down

0 comments on commit e27329e

Please sign in to comment.