This repository was archived by the owner on Aug 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathaddresses.ts
More file actions
31 lines (28 loc) · 1.36 KB
/
addresses.ts
File metadata and controls
31 lines (28 loc) · 1.36 KB
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
29
30
31
import { SupportedChainId } from 'constants/chains'
/**
* Map of supported chains to USDC contract addresses
*/
export const CHAIN_IDS_TO_USDC_ADDRESSES = {
[SupportedChainId.ETH_SEPOLIA]: '0x1c7d4b196cb0c7b01d743fbc6116a902379c7238',
[SupportedChainId.AVAX_FUJI]: '0x5425890298aed601595a70AB815c96711a31Bc65',
[SupportedChainId.ARB_SEPOLIA]: '0x75faf114eafb1bdbe2f0316df893fd58ce46aa4d',
[SupportedChainId.BASE_SEPOLIA]: '0x036CbD53842c5426634e7929541eC2318f3dCF7e',
}
/**
* Map of supported chains to Token Messenger contract addresses
*/
export const CHAIN_IDS_TO_TOKEN_MESSENGER_ADDRESSES = {
[SupportedChainId.ETH_SEPOLIA]: '0x9f3b8679c73c2fef8b59b4f3444d4e156fb70aa5',
[SupportedChainId.AVAX_FUJI]: '0xeb08f243e5d3fcff26a9e38ae5520a669f4019d0',
[SupportedChainId.ARB_SEPOLIA]: '0x9f3b8679c73c2fef8b59b4f3444d4e156fb70aa5',
[SupportedChainId.BASE_SEPOLIA]: '0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5',
}
/**
* Map of supported chains to Message Transmitter contract addresses
*/
export const CHAIN_IDS_TO_MESSAGE_TRANSMITTER_ADDRESSES = {
[SupportedChainId.ETH_SEPOLIA]: '0x7865fafc2db2093669d92c0f33aeef291086befd',
[SupportedChainId.AVAX_FUJI]: '0xa9fb1b3009dcb79e2fe346c16a604b8fa8ae0a79',
[SupportedChainId.ARB_SEPOLIA]: '0xacf1ceef35caac005e15888ddb8a3515c41b4872',
[SupportedChainId.BASE_SEPOLIA]: '0x7865fAfC2db2093669d92c0F33AeEF291086BEFD',
}