-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathConstantsUtil.ts
More file actions
36 lines (30 loc) · 1.02 KB
/
ConstantsUtil.ts
File metadata and controls
36 lines (30 loc) · 1.02 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
32
33
34
35
36
export const ConstantsUtil = {
VERSION: '1.2.6',
EIP155: 'eip155',
ADD_CHAIN_METHOD: 'wallet_addEthereumChain',
WC_NAME_SUFFIX: '.reown.id',
WC_NAME_SUFFIX_LEGACY: '.wcn.id',
BLOCKCHAIN_API_RPC_URL: 'https://rpc.walletconnect.org',
PULSE_API_URL: 'https://pulse.walletconnect.org',
API_URL: 'https://api.web3modal.org',
WALLET_CONNECT_CONNECTOR_ID: 'walletConnect',
COINBASE_CONNECTOR_ID: 'coinbaseWallet',
AUTH_CONNECTOR_ID: 'appKitAuth',
COINBASE_EXPLORER_ID: 'fd20dc426fb37566d803205b19bbc1d4096b248ac04548e3cfb6b3a38bd033aa',
USDT_CONTRACT_ADDRESSES: [
// Mainnet
'0xdac17f958d2ee523a2206206994597c13d831ec7',
// Polygon
'0xc2132d05d31c914a87c6611c10748aeb04b58e8f',
// Avalanche
'0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7',
// Cosmos
'0x919C1c267BC06a7039e03fcc2eF738525769109c',
// Celo
'0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e',
// Binance
'0x55d398326f99059fF775485246999027B3197955',
// Arbitrum
'0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9'
]
};