-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcelo.ts
43 lines (42 loc) · 1.02 KB
/
celo.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { defineChain } from '../../utils/chain/defineChain.js'
import { formattersCelo } from '../celo/formatters.js'
import { serializersCelo } from '../celo/serializers.js'
export const celo = /*#__PURE__*/ defineChain(
{
id: 42_220,
name: 'Celo',
network: 'celo',
nativeCurrency: {
decimals: 18,
name: 'CELO',
symbol: 'CELO',
},
rpcUrls: {
default: { http: ['https://forno.celo.org'] },
infura: {
http: ['https://celo-mainnet.infura.io/v3'],
},
public: {
http: ['https://forno.celo.org'],
},
},
blockExplorers: {
default: {
name: 'Celo Explorer',
url: 'https://explorer.celo.org/mainnet',
},
etherscan: { name: 'CeloScan', url: 'https://celoscan.io' },
},
contracts: {
multicall3: {
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
blockCreated: 13112599,
},
},
testnet: false,
},
{
formatters: formattersCelo,
serializers: serializersCelo,
},
)