-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmorechains.ts
106 lines (101 loc) · 2.29 KB
/
morechains.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import { defineChain } from "viem";
export const zircuit = defineChain({
id: 48899,
network: "zircuit",
name: "Zircuit Testnet",
nativeCurrency: { name: "ETH", symbol: "ETH", decimals: 18 },
rpcUrls: {
default: {
http: ["https://zircuit1.p2pify.com/"],
},
public: {
http: ["https://zircuit1.p2pify.com/"],
},
},
blockExplorers: {
blockscout: {
name: "Blockscout",
url: "https://explorer.zircuit.com",
},
default: {
name: "Blockscout",
url: "https://explorer.zircuit.com",
},
},
testnet: true,
});
export const apeChain = defineChain({
id: 1798,
network: "Jenkins",
name: "ApeChain Jenkins",
nativeCurrency: { name: "APE", symbol: "APE", decimals: 18 },
rpcUrls: {
default: {
http: ["https://jenkins.rpc.caldera.xyz/http"],
},
public: {
http: ["https://jenkins.rpc.caldera.xyz/http"],
},
},
blockExplorers: {
blockscout: {
name: "Blockscout",
url: "https://jenkins.explorer.caldera.xyz/",
},
default: {
name: "Blockscout",
url: " https://jenkins.explorer.caldera.xyz/",
},
},
testnet: true,
});
export const zerion = defineChain({
id: 4457845,
network: "ZERϴ Network",
name: "ZERϴ Network",
nativeCurrency: { name: "ETH", symbol: "ETH", decimals: 18 },
rpcUrls: {
default: {
http: ["https://rpc.zerion.io/v1/zero-sepolia"],
},
public: {
http: ["https://rpc.zerion.io/v1/zero-sepolia"],
},
},
blockExplorers: {
blockscout: {
name: "Blockscout",
url: "https://explorer.zero.network",
},
default: {
name: "Blockscout",
url: "https://explorer.zero.network",
},
},
testnet: true,
});
export const morph = defineChain({
id: 2810,
network: "Morph Holesky Testnet",
name: "Morph Holesky Testnet",
nativeCurrency: { name: "ETH", symbol: "ETH", decimals: 18 },
rpcUrls: {
default: {
http: ["https://rpc-quicknode-holesky.morphl2.io"],
},
public: {
http: ["https://rpc-quicknode-holesky.morphl2.io"],
},
},
blockExplorers: {
blockscout: {
name: "Blockscout",
url: "https://explorer-holesky.morphl2.io",
},
default: {
name: "Blockscout",
url: "https://explorer-holesky.morphl2.io",
},
},
testnet: true,
});