-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConstants.ts
28 lines (22 loc) · 974 Bytes
/
Constants.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export const ETH_HOLDER_ADDRESS_MAINNET =
'0xF977814e90dA44bFA03b6295A0616a897441aceC';
export const USDC_HOLDER_ADDRESS_MAINNET =
'0x55FE002aefF02F77364de339a1292923A15844B8';
export const ETH_HOLDER_ADDRESS_ARBITRUM =
'0xF977814e90dA44bFA03b6295A0616a897441aceC';
export const USDC_HOLDER_ADDRESS_ARBITRUM =
'0x1714400FF23dB4aF24F9fd64e7039e6597f18C2b';
export const USDC_ADDRESS_MAINNET =
'0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48';
export const USDC_ADDRESS_ARBITRUM =
'0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8';
export const USDC_TOKEN_DECIMALS = 6;
export const DELAYED_INBOX = '0x4Dbd4fc535Ac27206064B68FfCf827b0A60BAB3f';
export const MAINNET_CHAIN_ID = 1;
export const ARBITRUM_CHAIN_ID = 42161;
export const OPTIMISM_CHAIN_ID = 10;
export const POLYGON_CHAIN_ID = 137;
export const GOERLI_CHAIN_ID = 5;
export const SEPOLIA_CHAIN_ID = 11155111;
export const ARBITRUM_GOERLI_CHAIN_ID = 421613;
export const ARBITRUM_SEPOLIA_CHAIN_ID = 421614;