@@ -5,6 +5,7 @@ export interface EntropyDeployment {
5
5
delay : string ;
6
6
gasLimit : string ;
7
7
rpc : string ;
8
+ nativeCurrency : string ;
8
9
}
9
10
10
11
export const EntropyDeployments : Record < string , EntropyDeployment > = {
@@ -15,6 +16,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
15
16
delay : "1 block" ,
16
17
gasLimit : "500K" ,
17
18
rpc : "https://rpc.blast.io" ,
19
+ nativeCurrency : "ETH" ,
18
20
} ,
19
21
"lightlink-phoenix" : {
20
22
address : "0x98046Bd286715D3B0BC227Dd7a956b83D8978603" ,
@@ -23,6 +25,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
23
25
delay : "1 block" ,
24
26
gasLimit : "500K" ,
25
27
rpc : "https://replicator.phoenix.lightlink.io/rpc/v1" ,
28
+ nativeCurrency : "ETH" ,
26
29
} ,
27
30
chiliz : {
28
31
address : "0x0708325268dF9F66270F1401206434524814508b" ,
@@ -31,6 +34,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
31
34
delay : "12 blocks" ,
32
35
gasLimit : "500K" ,
33
36
rpc : "https://rpc.ankr.com/chiliz" ,
37
+ nativeCurrency : "CHZ" ,
34
38
} ,
35
39
arbitrum : {
36
40
address : "0x7698E925FfC29655576D0b361D75Af579e20AdAc" ,
@@ -39,6 +43,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
39
43
delay : "6 blocks" ,
40
44
gasLimit : "2.5M" ,
41
45
rpc : "https://arb1.arbitrum.io/rpc" ,
46
+ nativeCurrency : "ETH" ,
42
47
} ,
43
48
optimism : {
44
49
address : "0xdF21D137Aadc95588205586636710ca2890538d5" ,
@@ -47,6 +52,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
47
52
delay : "2 blocks" ,
48
53
gasLimit : "500K" ,
49
54
rpc : "https://rpc.ankr.com/optimism" ,
55
+ nativeCurrency : "ETH" ,
50
56
} ,
51
57
mode : {
52
58
address : "0x8D254a21b3C86D32F7179855531CE99164721933" ,
@@ -55,6 +61,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
55
61
delay : "2 blocks" ,
56
62
gasLimit : "500K" ,
57
63
rpc : "https://mainnet.mode.network/" ,
64
+ nativeCurrency : "ETH" ,
58
65
} ,
59
66
zetachain : {
60
67
address : "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320" ,
@@ -63,6 +70,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
63
70
delay : "0 block" ,
64
71
gasLimit : "500K" ,
65
72
rpc : "https://zetachain-evm.blockpi.network/v1/rpc/public" ,
73
+ nativeCurrency : "ZETA" ,
66
74
} ,
67
75
base : {
68
76
address : "0x6E7D74FA7d5c90FEF9F0512987605a6d546181Bb" ,
@@ -71,6 +79,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
71
79
delay : "1 block" ,
72
80
gasLimit : "500K" ,
73
81
rpc : "https://developer-access-mainnet.base.org/" ,
82
+ nativeCurrency : "ETH" ,
74
83
} ,
75
84
"lightlink-pegasus" : {
76
85
rpc : "https://replicator.pegasus.lightlink.io/rpc/v1" ,
@@ -79,6 +88,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
79
88
address : "0x8250f4aF4B972684F7b336503E2D6dFeDeB1487a" ,
80
89
explorer : "https://pegasus.lightlink.io/address/$ADDRESS" ,
81
90
gasLimit : "500K" ,
91
+ nativeCurrency : "ETH" ,
82
92
} ,
83
93
"chiliz-spicy" : {
84
94
rpc : "https://spicy-rpc.chiliz.com" ,
@@ -87,6 +97,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
87
97
address : "0xD458261E832415CFd3BAE5E416FdF3230ce6F134" ,
88
98
explorer : "https://spicy-explorer.chiliz.com/address/$ADDRESS" ,
89
99
gasLimit : "500K" ,
100
+ nativeCurrency : "CHZ" ,
90
101
} ,
91
102
"conflux-espace-testnet" : {
92
103
rpc : "https://evmtestnet.confluxrpc.com" ,
@@ -95,6 +106,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
95
106
address : "0xdF21D137Aadc95588205586636710ca2890538d5" ,
96
107
explorer : "https://evmtestnet.confluxscan.io/address/$ADDRESS" ,
97
108
gasLimit : "500K" ,
109
+ nativeCurrency : "CFX" ,
98
110
} ,
99
111
"mode-sepolia" : {
100
112
rpc : "https://sepolia.mode.network/" ,
@@ -103,6 +115,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
103
115
address : "0x98046Bd286715D3B0BC227Dd7a956b83D8978603" ,
104
116
explorer : "https://sepolia.explorer.mode.network/address/$ADDRESS" ,
105
117
gasLimit : "500K" ,
118
+ nativeCurrency : "ETH" ,
106
119
} ,
107
120
"sei-evm-testnet" : {
108
121
rpc : "https://evm-rpc-testnet.sei-apis.com" ,
@@ -111,6 +124,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
111
124
address : "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320" ,
112
125
explorer : "https://seitrace.com/address/$ADDRESS?chain=atlantic-2" ,
113
126
gasLimit : "500K" ,
127
+ nativeCurrency : "SEI" ,
114
128
} ,
115
129
"arbitrum-sepolia" : {
116
130
rpc : "https://sepolia-rollup.arbitrum.io/rpc" ,
@@ -119,6 +133,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
119
133
address : "0x549Ebba8036Ab746611B4fFA1423eb0A4Df61440" ,
120
134
explorer : "https://sepolia.arbiscan.io/address/$ADDRESS" ,
121
135
gasLimit : "2.5M" ,
136
+ nativeCurrency : "ETH" ,
122
137
} ,
123
138
"fantom-sonic" : {
124
139
rpc : "https://rpc.testnet.soniclabs.com" ,
@@ -127,6 +142,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
127
142
address : "0x5124FAE0890dE83B3bb2cc30Bb3EDAfFc07Da744" ,
128
143
explorer : "https://testnet.soniclabs.com/address/$ADDRESS" ,
129
144
gasLimit : "500K" ,
145
+ nativeCurrency : "S" ,
130
146
} ,
131
147
"blast-testnet" : {
132
148
rpc : "https://sepolia.blast.io" ,
@@ -135,6 +151,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
135
151
address : "0x98046Bd286715D3B0BC227Dd7a956b83D8978603" ,
136
152
explorer : "https://testnet.blastscan.io/address/$ADDRESS" ,
137
153
gasLimit : "500K" ,
154
+ nativeCurrency : "ETH" ,
138
155
} ,
139
156
"optimism-sepolia" : {
140
157
rpc : "https://sepolia.optimism.io" ,
@@ -143,6 +160,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
143
160
address : "0x4821932D0CDd71225A6d914706A621e0389D7061" ,
144
161
explorer : "https://optimism-sepolia.blockscout.com/address/$ADDRESS" ,
145
162
gasLimit : "500K" ,
163
+ nativeCurrency : "ETH" ,
146
164
} ,
147
165
"base-sepolia" : {
148
166
rpc : "https://sepolia.base.org" ,
@@ -151,6 +169,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
151
169
address : "0x41c9e39574F40Ad34c79f1C99B66A45eFB830d4c" ,
152
170
explorer : "https://base-sepolia.blockscout.com/address/$ADDRESS" ,
153
171
gasLimit : "500K" ,
172
+ nativeCurrency : "ETH" ,
154
173
} ,
155
174
"berachain-testnet-v2" : {
156
175
rpc : "https://evm-rpc-bera.rhino-apis.com/" ,
@@ -159,6 +178,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
159
178
address : "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320" ,
160
179
explorer : "https://bartio.beratrail.io/address/$ADDRESS" ,
161
180
gasLimit : "500K" ,
181
+ nativeCurrency : "BERA" ,
162
182
} ,
163
183
"coredao-testnet" : {
164
184
rpc : "https://rpc.test.btcs.network" ,
@@ -167,6 +187,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
167
187
address : "0xf0a1b566B55e0A0CB5BeF52Eb2a57142617Bee67" ,
168
188
explorer : "https://scan.test.btcs.network/address/$ADDRESS" ,
169
189
gasLimit : "500K" ,
190
+ nativeCurrency : "tCORE" ,
170
191
} ,
171
192
"zetachain-testnet" : {
172
193
rpc : "https://zetachain-athens-evm.blockpi.network/v1/rpc/public" ,
@@ -175,6 +196,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
175
196
address : "0x4374e5a8b9C22271E9EB878A2AA31DE97DF15DAF" ,
176
197
explorer : "https://explorer.zetachain.com/address/$ADDRESS" ,
177
198
gasLimit : "500K" ,
199
+ nativeCurrency : "ZETA" ,
178
200
} ,
179
201
"taiko-hekla" : {
180
202
rpc : "https://rpc.hekla.taiko.xyz/" ,
@@ -183,6 +205,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
183
205
address : "0x98046Bd286715D3B0BC227Dd7a956b83D8978603" ,
184
206
explorer : "https://hekla.taikoscan.network/address/$ADDRESS" ,
185
207
gasLimit : "500K" ,
208
+ nativeCurrency : "ETH" ,
186
209
} ,
187
210
"orange-testnet" : {
188
211
address : "0x98046Bd286715D3B0BC227Dd7a956b83D8978603" ,
@@ -191,6 +214,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
191
214
gasLimit : "500K" ,
192
215
network : "testnet" ,
193
216
rpc : "https://subnets.avax.network/orangetest/testnet/rpc" ,
217
+ nativeCurrency : "JUICE" ,
194
218
} ,
195
219
"sei-evm-mainnet" : {
196
220
address : "0x98046Bd286715D3B0BC227Dd7a956b83D8978603" ,
@@ -199,6 +223,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
199
223
gasLimit : "500K" ,
200
224
network : "mainnet" ,
201
225
rpc : "https://evm-rpc.sei-apis.com" ,
226
+ nativeCurrency : "SEI" ,
202
227
} ,
203
228
merlin : {
204
229
address : "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320" ,
@@ -207,6 +232,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
207
232
gasLimit : "500K" ,
208
233
network : "mainnet" ,
209
234
rpc : "https://rpc.merlinchain.io" ,
235
+ nativeCurrency : "BTC" ,
210
236
} ,
211
237
"merlin-testnet" : {
212
238
address : "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb" ,
@@ -215,6 +241,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
215
241
gasLimit : "500K" ,
216
242
network : "testnet" ,
217
243
rpc : "https://testnet-rpc.merlinchain.io/" ,
244
+ nativeCurrency : "BTC" ,
218
245
} ,
219
246
taiko : {
220
247
address : "0x26DD80569a8B23768A1d80869Ed7339e07595E85" ,
@@ -223,6 +250,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
223
250
gasLimit : "500K" ,
224
251
network : "mainnet" ,
225
252
rpc : "https://rpc.mainnet.taiko.xyz" ,
253
+ nativeCurrency : "ETH" ,
226
254
} ,
227
255
"etherlink-testnet" : {
228
256
address : "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509" ,
@@ -231,6 +259,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
231
259
gasLimit : "15M" ,
232
260
network : "testnet" ,
233
261
rpc : "https://node.ghostnet.etherlink.com" ,
262
+ nativeCurrency : "XTZ" ,
234
263
} ,
235
264
etherlink : {
236
265
address : "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509" ,
@@ -239,6 +268,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
239
268
gasLimit : "15M" ,
240
269
network : "mainnet" ,
241
270
rpc : "https://node.mainnet.etherlink.com/" ,
271
+ nativeCurrency : "XTZ" ,
242
272
} ,
243
273
klaytn : {
244
274
address : "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320" ,
@@ -247,6 +277,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
247
277
gasLimit : "500K" ,
248
278
network : "mainnet" ,
249
279
rpc : "https://rpc.ankr.com/klaytn" ,
280
+ nativeCurrency : "KLAY" ,
250
281
} ,
251
282
"klaytn-testnet" : {
252
283
address : "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320" ,
@@ -255,6 +286,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
255
286
gasLimit : "500K" ,
256
287
network : "testnet" ,
257
288
rpc : "https://rpc.ankr.com/klaytn_testnet" ,
289
+ nativeCurrency : "KLAY" ,
258
290
} ,
259
291
"tabi-testnet" : {
260
292
address : "0x36825bf3Fbdf5a29E2d5148bfe7Dcf7B5639e320" ,
@@ -263,6 +295,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
263
295
gasLimit : "500K" ,
264
296
network : "testnet" ,
265
297
rpc : "https://rpc-internal.testnet.tabichain.com/" ,
298
+ nativeCurrency : "TABI" ,
266
299
} ,
267
300
"b3-testnet" : {
268
301
address : "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb" ,
@@ -271,6 +304,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
271
304
gasLimit : "500K" ,
272
305
network : "testnet" ,
273
306
rpc : "https://sepolia.b3.fun/http/" ,
307
+ nativeCurrency : "ETH" ,
274
308
} ,
275
309
"b3-mainnet" : {
276
310
address : "0x5744Cbf430D99456a0A8771208b674F27f8EF0Fb" ,
@@ -279,6 +313,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
279
313
gasLimit : "500K" ,
280
314
network : "mainnet" ,
281
315
rpc : "https://mainnet-rpc.b3.fun/http" ,
316
+ nativeCurrency : "ETH" ,
282
317
} ,
283
318
"apechain-testnet" : {
284
319
address : "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509" ,
@@ -287,6 +322,7 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
287
322
gasLimit : "500K" ,
288
323
network : "testnet" ,
289
324
rpc : "https://curtis.rpc.caldera.xyz/http" ,
325
+ nativeCurrency : "APE" ,
290
326
} ,
291
327
"soneium-minato-testnet" : {
292
328
address : "0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509" ,
@@ -295,5 +331,6 @@ export const EntropyDeployments: Record<string, EntropyDeployment> = {
295
331
gasLimit : "500K" ,
296
332
network : "testnet" ,
297
333
rpc : "https://rpc.minato.soneium.org/" ,
334
+ nativeCurrency : "ETH" ,
298
335
} ,
299
336
} ;
0 commit comments