forked from wevm/viem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmantaTestnet.ts
33 lines (32 loc) · 861 Bytes
/
mantaTestnet.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
import { defineChain } from '../../utils/chain/defineChain.js'
export const mantaTestnet = /*#__PURE__*/ defineChain({
id: 3_441_005,
name: 'Manta Pacific Testnet',
network: 'manta-testnet',
nativeCurrency: {
decimals: 18,
name: 'ETH',
symbol: 'ETH',
},
rpcUrls: {
default: { http: ['https://manta-testnet.calderachain.xyz/http'] },
public: { http: ['https://manta-testnet.calderachain.xyz/http'] },
},
blockExplorers: {
etherscan: {
name: 'Manta Testnet Explorer',
url: 'https://pacific-explorer.testnet.manta.network',
},
default: {
name: 'Manta Testnet Explorer',
url: 'https://pacific-explorer.testnet.manta.network',
},
},
contracts: {
multicall3: {
address: '0x211B1643b95Fe76f11eD8880EE810ABD9A4cf56C',
blockCreated: 419915,
},
},
testnet: true,
})