-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathceloCannoli.ts
41 lines (40 loc) · 964 Bytes
/
celoCannoli.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
import { defineChain } from '../../utils/chain/defineChain.js'
import { formattersCelo } from '../celo/formatters.js'
import { serializersCelo } from '../celo/serializers.js'
export const celoCannoli = /*#__PURE__*/ defineChain(
{
id: 17_323,
name: 'Cannoli',
network: 'celo-cannoli',
nativeCurrency: {
decimals: 18,
name: 'CELO',
symbol: 'C-CELO',
},
rpcUrls: {
default: {
http: ['https://forno.cannoli.celo-testnet.org'],
},
public: {
http: ['https://forno.cannoli.celo-testnet.org'],
},
},
blockExplorers: {
default: {
name: 'Celo Explorer',
url: 'https://explorer.celo.org/cannoli',
},
},
contracts: {
multicall3: {
address: '0x5Acb0aa8BF4E8Ff0d882Ee187140713C12BF9718',
blockCreated: 87429,
},
},
testnet: true,
},
{
formatters: formattersCelo,
serializers: serializersCelo,
},
)