Skip to content

Commit

Permalink
Merge pull request #1325 from ReflectiveChimp/chore/add-crv-sol
Browse files Browse the repository at this point in the history
Add SOL on arb and CRV on base to AB
  • Loading branch information
roman-monk authored Dec 22, 2023
2 parents 8598f7d + dd3dff1 commit 55c14df
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/address-book/address-book/arbitrum/tokens/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1359,6 +1359,20 @@ const _tokens = {
logoURI: '',
documentation: 'https://docs.overnight.fi/',
},
SOL: {
name: 'Wrapped SOL',
symbol: 'SOL',
oracleId: 'SOL',
address: '0x2bcC6D6CdBbDC0a4071e48bb3B969b06B3330c07',
chainId: 42161,
decimals: 9,
website: 'https://solana.com/',
description:
'Solana is a fast, secure, and censorship resistant blockchain providing the open infrastructure required for global adoption.',
bridge: 'wormhole',
logoURI: '',
documentation: 'https://docs.solana.com/',
},
} as const;

export const tokens: ConstRecord<typeof _tokens, Token> = _tokens;
14 changes: 14 additions & 0 deletions packages/address-book/address-book/base/tokens/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,20 @@ const _tokens = {
documentation: 'https://docs.lido.fi/',
bridge: 'base-canonical',
},
CRV: {
name: 'Curve DAO Token',
symbol: 'CRV',
oracleId: 'CRV',
address: '0x8Ee73c484A26e0A5df2Ee2a4960B789967dd0415',
chainId: 8453,
decimals: 18,
logoURI: '',
website: 'https://curve.fi/',
description:
'Curve is an exchange liquidity pool on Ethereum. Curve is designed for extremely efficient stablecoin trading and low risk, supplemental fee income for liquidity providers, without an opportunity cost.',
documentation: 'https://curve.readthedocs.io/',
bridge: 'base-canonical',
},
} as const;

export const tokens: ConstRecord<typeof _tokens, Token> = _tokens;

0 comments on commit 55c14df

Please sign in to comment.