Skip to content

Commit

Permalink
feat: add usdc.e
Browse files Browse the repository at this point in the history
  • Loading branch information
zerotucks committed Mar 11, 2024
1 parent 2947b89 commit 7c1c0cb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"homepage": "https://github.com/OasisDEX/oazo-configuration#readme",
"dependencies": {
"@oasisdex/addresses": "0.1.16-dma-v2-workers.3",
"@oasisdex/addresses": "0.1.17-automation",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
Expand Down
1 change: 1 addition & 0 deletions shared/token-symbol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export enum TokenSymbol {
WBTC = 'WBTC', // Wrapped Bitcoin
USDC = 'USDC', // USD Coin
USDBC = 'USDBC', // USD Coin BSC
USDCE = 'USDC.E',
DAI = 'DAI', // Dai Stablecoin
CBETH = 'CBETH', // Compound ETH (assuming, provide accurate description if different)
RETH = 'RETH', // Rocket Pool ETH
Expand Down
2 changes: 2 additions & 0 deletions shared/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const WSTETH = new Token(TokenSymbol.WSTETH, 18)
const WBTC = new Token(TokenSymbol.WBTC, 8)
const USDC = new Token(TokenSymbol.USDC, 6)
const USDBC = new Token(TokenSymbol.USDBC, 6)
const USDCE = new Token(TokenSymbol.USDCE, 6)
const DAI = new Token(TokenSymbol.DAI, 18)
const CBETH = new Token(TokenSymbol.CBETH, 8)
const RETH = new Token(TokenSymbol.RETH, 8)
Expand Down Expand Up @@ -118,6 +119,7 @@ export const tokenByTokenSymbol: TokenByTokenSymbol = {
WBTC,
USDC,
USDBC,
USDCE,
DAI,
CBETH,
RETH,
Expand Down

0 comments on commit 7c1c0cb

Please sign in to comment.