-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathceloAlfajores.ts
45 lines (44 loc) · 1.11 KB
/
celoAlfajores.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
44
45
import { defineChain } from '../../utils/chain/defineChain.js'
import { formattersCelo } from '../celo/formatters.js'
import { serializersCelo } from '../celo/serializers.js'
export const celoAlfajores = /*#__PURE__*/ defineChain(
{
id: 44_787,
name: 'Alfajores',
network: 'celo-alfajores',
nativeCurrency: {
decimals: 18,
name: 'CELO',
symbol: 'A-CELO',
},
rpcUrls: {
default: {
http: ['https://alfajores-forno.celo-testnet.org'],
},
infura: {
http: ['https://celo-alfajores.infura.io/v3'],
},
public: {
http: ['https://alfajores-forno.celo-testnet.org'],
},
},
blockExplorers: {
default: {
name: 'Celo Explorer',
url: 'https://explorer.celo.org/alfajores',
},
etherscan: { name: 'CeloScan', url: 'https://alfajores.celoscan.io/' },
},
contracts: {
multicall3: {
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
blockCreated: 14569001,
},
},
testnet: true,
},
{
formatters: formattersCelo,
serializers: serializersCelo,
},
)