@@ -130,6 +130,13 @@ export const USDC_BNB_CHAIN = new Token(
130130 'USDC' ,
131131 'USDC'
132132)
133+ export const USDC_BASE = new Token (
134+ SupportedChainId . BASE ,
135+ '0x833589fcd6edb6e08f4c7c32d4f71b54bda02913' ,
136+ 6 ,
137+ 'USDC' ,
138+ 'USD Coin'
139+ )
133140export const USDC : { [ chainId in SupportedChainId ] : Token } = {
134141 [ SupportedChainId . MAINNET ] : USDC_MAINNET ,
135142 [ SupportedChainId . ARBITRUM_ONE ] : USDC_ARBITRUM ,
@@ -145,6 +152,7 @@ export const USDC: { [chainId in SupportedChainId]: Token } = {
145152 [ SupportedChainId . KOVAN ] : USDC_KOVAN ,
146153 [ SupportedChainId . ROPSTEN ] : USDC_ROPSTEN ,
147154 [ SupportedChainId . BNB ] : USDC_BNB_CHAIN ,
155+ [ SupportedChainId . BASE ] : USDC_BASE ,
148156}
149157export const DAI_POLYGON = new Token (
150158 SupportedChainId . POLYGON ,
@@ -407,6 +415,14 @@ export const DAI_BNB_CHAIN = new Token(
407415 'DAI'
408416)
409417
418+ export const DAI_BASE = new Token (
419+ SupportedChainId . BASE ,
420+ '0x50c5725949a6f0c72e6c4a641f24049a917db0cb' ,
421+ 18 ,
422+ 'DAI' ,
423+ 'Dai Stablecoin'
424+ )
425+
410426function isBnbChain ( chainId : number ) : chainId is SupportedChainId . BNB {
411427 return chainId === SupportedChainId . BNB
412428}
@@ -490,6 +506,13 @@ export const WRAPPED_NATIVE_CURRENCY: { [chainId: number]: Token | undefined } =
490506 'WBNB' ,
491507 'Wrapped BNB'
492508 ) ,
509+ [ SupportedChainId . BASE ] : new Token (
510+ SupportedChainId . BASE ,
511+ '0x4200000000000000000000000000000000000006' ,
512+ 18 ,
513+ 'WETH' ,
514+ 'Wrapped Ether'
515+ ) ,
493516}
494517
495518export function isCelo ( chainId : number ) : chainId is SupportedChainId . CELO | SupportedChainId . CELO_ALFAJORES {
@@ -574,5 +597,6 @@ export const TOKEN_SHORTHANDS: { [shorthand: string]: { [chainId in SupportedCha
574597 [ SupportedChainId . ROPSTEN ] : USDC_ROPSTEN . address ,
575598 [ SupportedChainId . CELO ] : PORTAL_USDC_CELO . address ,
576599 [ SupportedChainId . CELO_ALFAJORES ] : USDC_CELO_ALFAJORES . address ,
600+ [ SupportedChainId . BASE ] : USDC_BASE . address ,
577601 } ,
578602}
0 commit comments