@openzeppelin/ui-builder-adapter-evm 1.6.0 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,654 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/networks.ts
21
+ var networks_exports = {};
22
+ __export(networks_exports, {
23
+ arbitrumMainnet: () => arbitrumMainnet,
24
+ arbitrumSepolia: () => arbitrumSepolia,
25
+ avalancheFuji: () => avalancheFuji,
26
+ avalancheMainnet: () => avalancheMainnet,
27
+ baseMainnet: () => baseMainnet,
28
+ baseSepolia: () => baseSepolia,
29
+ bscMainnet: () => bscMainnet,
30
+ bscTestnet: () => bscTestnet,
31
+ ethereumMainnet: () => ethereumMainnet,
32
+ ethereumSepolia: () => ethereumSepolia,
33
+ evmMainnetNetworks: () => evmMainnetNetworks,
34
+ evmNetworks: () => evmNetworks,
35
+ evmTestnetNetworks: () => evmTestnetNetworks,
36
+ lineaMainnet: () => lineaMainnet,
37
+ lineaSepolia: () => lineaSepolia,
38
+ monadTestnet: () => monadTestnet,
39
+ networks: () => evmNetworks,
40
+ optimismMainnet: () => optimismMainnet,
41
+ optimismSepolia: () => optimismSepolia,
42
+ polygonAmoy: () => polygonAmoy,
43
+ polygonMainnet: () => polygonMainnet,
44
+ polygonZkEvmCardona: () => polygonZkEvmCardona,
45
+ polygonZkEvmMainnet: () => polygonZkEvmMainnet,
46
+ scrollMainnet: () => scrollMainnet,
47
+ scrollSepolia: () => scrollSepolia,
48
+ zkSyncEraMainnet: () => zkSyncEraMainnet,
49
+ zksyncSepoliaTestnet: () => zksyncSepoliaTestnet
50
+ });
51
+ module.exports = __toCommonJS(networks_exports);
52
+
53
+ // src/networks/mainnet.ts
54
+ var import_react = require("@web3icons/react");
55
+ var import_chains = require("viem/chains");
56
+ var ethereumMainnet = {
57
+ id: "ethereum-mainnet",
58
+ exportConstName: "ethereumMainnet",
59
+ name: "Ethereum",
60
+ ecosystem: "evm",
61
+ network: "ethereum",
62
+ type: "mainnet",
63
+ isTestnet: false,
64
+ chainId: 1,
65
+ rpcUrl: import_chains.mainnet.rpcUrls.default.http[0],
66
+ explorerUrl: "https://etherscan.io",
67
+ apiUrl: "https://api.etherscan.io/v2/api",
68
+ primaryExplorerApiIdentifier: "etherscan-v2",
69
+ supportsEtherscanV2: true,
70
+ iconComponent: import_react.NetworkEthereum,
71
+ nativeCurrency: {
72
+ name: "Ether",
73
+ symbol: "ETH",
74
+ decimals: 18
75
+ },
76
+ viemChain: import_chains.mainnet,
77
+ accessControlIndexerUrl: "https://openzeppelin-ethereum-mainnet.graphql.subquery.network/"
78
+ };
79
+ var arbitrumMainnet = {
80
+ id: "arbitrum-mainnet",
81
+ exportConstName: "arbitrumMainnet",
82
+ name: "Arbitrum One",
83
+ ecosystem: "evm",
84
+ network: "arbitrum",
85
+ type: "mainnet",
86
+ isTestnet: false,
87
+ chainId: 42161,
88
+ rpcUrl: import_chains.arbitrum.rpcUrls.default.http[0],
89
+ explorerUrl: "https://arbiscan.io",
90
+ apiUrl: "https://api.etherscan.io/v2/api",
91
+ primaryExplorerApiIdentifier: "etherscan-v2",
92
+ supportsEtherscanV2: true,
93
+ iconComponent: import_react.NetworkArbitrumOne,
94
+ nativeCurrency: {
95
+ name: "Ether",
96
+ symbol: "ETH",
97
+ decimals: 18
98
+ },
99
+ viemChain: import_chains.arbitrum,
100
+ accessControlIndexerUrl: "https://openzeppelin-arbitrum-mainnet.graphql.subquery.network/"
101
+ };
102
+ var polygonMainnet = {
103
+ id: "polygon-mainnet",
104
+ exportConstName: "polygonMainnet",
105
+ name: "Polygon",
106
+ ecosystem: "evm",
107
+ network: "polygon",
108
+ type: "mainnet",
109
+ isTestnet: false,
110
+ chainId: 137,
111
+ rpcUrl: import_chains.polygon.rpcUrls.default.http[0],
112
+ explorerUrl: "https://polygonscan.com",
113
+ apiUrl: "https://api.etherscan.io/v2/api",
114
+ primaryExplorerApiIdentifier: "etherscan-v2",
115
+ supportsEtherscanV2: true,
116
+ iconComponent: import_react.NetworkPolygon,
117
+ nativeCurrency: {
118
+ name: "MATIC",
119
+ symbol: "MATIC",
120
+ decimals: 18
121
+ },
122
+ viemChain: import_chains.polygon,
123
+ accessControlIndexerUrl: "https://openzeppelin-polygon-mainnet.graphql.subquery.network/"
124
+ };
125
+ var polygonZkEvmMainnet = {
126
+ id: "polygon-zkevm-mainnet",
127
+ exportConstName: "polygonZkEvmMainnet",
128
+ name: "Polygon zkEVM",
129
+ ecosystem: "evm",
130
+ network: "polygon-zkevm",
131
+ type: "mainnet",
132
+ isTestnet: false,
133
+ chainId: 1101,
134
+ rpcUrl: import_chains.polygonZkEvm.rpcUrls.default.http[0],
135
+ explorerUrl: "https://zkevm.polygonscan.com",
136
+ apiUrl: "https://api.etherscan.io/v2/api",
137
+ primaryExplorerApiIdentifier: "etherscan-v2",
138
+ supportsEtherscanV2: true,
139
+ iconComponent: import_react.NetworkPolygon,
140
+ nativeCurrency: {
141
+ name: "Ether",
142
+ symbol: "ETH",
143
+ decimals: 18
144
+ },
145
+ viemChain: import_chains.polygonZkEvm,
146
+ accessControlIndexerUrl: "https://openzeppelin-polygon-zkevm-mainnet.graphql.subquery.network/"
147
+ };
148
+ var baseMainnet = {
149
+ id: "base-mainnet",
150
+ exportConstName: "baseMainnet",
151
+ name: "Base",
152
+ ecosystem: "evm",
153
+ network: "base",
154
+ type: "mainnet",
155
+ isTestnet: false,
156
+ chainId: 8453,
157
+ rpcUrl: import_chains.base.rpcUrls.default.http[0],
158
+ explorerUrl: "https://basescan.org",
159
+ apiUrl: "https://api.etherscan.io/v2/api",
160
+ primaryExplorerApiIdentifier: "etherscan-v2",
161
+ supportsEtherscanV2: true,
162
+ iconComponent: import_react.NetworkBase,
163
+ nativeCurrency: {
164
+ name: "Ether",
165
+ symbol: "ETH",
166
+ decimals: 18
167
+ },
168
+ viemChain: import_chains.base,
169
+ accessControlIndexerUrl: "https://openzeppelin-base-mainnet.graphql.subquery.network/"
170
+ };
171
+ var bscMainnet = {
172
+ id: "bsc-mainnet",
173
+ exportConstName: "bscMainnet",
174
+ name: "BNB Smart Chain",
175
+ ecosystem: "evm",
176
+ network: "bsc",
177
+ type: "mainnet",
178
+ isTestnet: false,
179
+ chainId: 56,
180
+ rpcUrl: import_chains.bsc.rpcUrls.default.http[0],
181
+ explorerUrl: "https://bscscan.com",
182
+ apiUrl: "https://api.etherscan.io/v2/api",
183
+ primaryExplorerApiIdentifier: "etherscan-v2",
184
+ supportsEtherscanV2: true,
185
+ iconComponent: import_react.NetworkBinanceSmartChain,
186
+ nativeCurrency: {
187
+ name: "BNB",
188
+ symbol: "BNB",
189
+ decimals: 18
190
+ },
191
+ viemChain: import_chains.bsc,
192
+ accessControlIndexerUrl: "https://openzeppelin-bsc-mainnet.graphql.subquery.network/"
193
+ };
194
+ var optimismMainnet = {
195
+ id: "optimism-mainnet",
196
+ exportConstName: "optimismMainnet",
197
+ name: "OP Mainnet",
198
+ ecosystem: "evm",
199
+ network: "optimism",
200
+ type: "mainnet",
201
+ isTestnet: false,
202
+ chainId: 10,
203
+ rpcUrl: import_chains.optimism.rpcUrls.default.http[0],
204
+ explorerUrl: "https://optimistic.etherscan.io",
205
+ apiUrl: "https://api.etherscan.io/v2/api",
206
+ primaryExplorerApiIdentifier: "etherscan-v2",
207
+ supportsEtherscanV2: true,
208
+ iconComponent: import_react.NetworkOptimism,
209
+ nativeCurrency: {
210
+ name: "Ether",
211
+ symbol: "ETH",
212
+ decimals: 18
213
+ },
214
+ viemChain: import_chains.optimism,
215
+ accessControlIndexerUrl: "https://openzeppelin-optimism-mainnet.graphql.subquery.network/"
216
+ };
217
+ var avalancheMainnet = {
218
+ id: "avalanche-mainnet",
219
+ exportConstName: "avalancheMainnet",
220
+ name: "Avalanche C-Chain",
221
+ ecosystem: "evm",
222
+ network: "avalanche",
223
+ type: "mainnet",
224
+ isTestnet: false,
225
+ chainId: 43114,
226
+ rpcUrl: import_chains.avalanche.rpcUrls.default.http[0],
227
+ explorerUrl: "https://snowscan.xyz",
228
+ apiUrl: "https://api.etherscan.io/v2/api",
229
+ primaryExplorerApiIdentifier: "etherscan-v2",
230
+ supportsEtherscanV2: true,
231
+ iconComponent: import_react.NetworkAvalanche,
232
+ nativeCurrency: {
233
+ name: "Avalanche",
234
+ symbol: "AVAX",
235
+ decimals: 18
236
+ },
237
+ viemChain: import_chains.avalanche,
238
+ accessControlIndexerUrl: "https://openzeppelin-avalanche-mainnet.graphql.subquery.network/"
239
+ };
240
+ var zkSyncEraMainnet = {
241
+ id: "zksync-era-mainnet",
242
+ exportConstName: "zkSyncEraMainnet",
243
+ name: "ZkSync Era",
244
+ ecosystem: "evm",
245
+ network: "zksync-era",
246
+ type: "mainnet",
247
+ isTestnet: false,
248
+ chainId: 324,
249
+ rpcUrl: import_chains.zksync.rpcUrls.default.http[0],
250
+ explorerUrl: "https://explorer.zksync.io",
251
+ apiUrl: "https://block-explorer-api.mainnet.zksync.io/api",
252
+ primaryExplorerApiIdentifier: "zksync-era-mainnet",
253
+ supportsEtherscanV2: false,
254
+ iconComponent: import_react.NetworkZksync,
255
+ nativeCurrency: {
256
+ name: "Ether",
257
+ symbol: "ETH",
258
+ decimals: 18
259
+ },
260
+ viemChain: import_chains.zksync,
261
+ accessControlIndexerUrl: "https://openzeppelin-zksync-era-mainnet.graphql.subquery.network/"
262
+ };
263
+ var scrollMainnet = {
264
+ id: "scroll-mainnet",
265
+ exportConstName: "scrollMainnet",
266
+ name: "Scroll",
267
+ ecosystem: "evm",
268
+ network: "scroll",
269
+ type: "mainnet",
270
+ isTestnet: false,
271
+ chainId: 534352,
272
+ rpcUrl: import_chains.scroll.rpcUrls.default.http[0],
273
+ explorerUrl: "https://scrollscan.com",
274
+ apiUrl: "https://api.etherscan.io/v2/api",
275
+ primaryExplorerApiIdentifier: "etherscan-v2",
276
+ supportsEtherscanV2: true,
277
+ iconComponent: import_react.NetworkScroll,
278
+ nativeCurrency: {
279
+ name: "Ether",
280
+ symbol: "ETH",
281
+ decimals: 18
282
+ },
283
+ viemChain: import_chains.scroll,
284
+ accessControlIndexerUrl: "https://openzeppelin-scroll-mainnet.graphql.subquery.network/"
285
+ };
286
+ var lineaMainnet = {
287
+ id: "linea-mainnet",
288
+ exportConstName: "lineaMainnet",
289
+ name: "Linea",
290
+ ecosystem: "evm",
291
+ network: "linea",
292
+ type: "mainnet",
293
+ isTestnet: false,
294
+ chainId: 59144,
295
+ rpcUrl: import_chains.linea.rpcUrls.default.http[0],
296
+ explorerUrl: "https://lineascan.build",
297
+ apiUrl: "https://api.etherscan.io/v2/api",
298
+ primaryExplorerApiIdentifier: "etherscan-v2",
299
+ supportsEtherscanV2: true,
300
+ iconComponent: import_react.NetworkLinea,
301
+ nativeCurrency: {
302
+ name: "Ether",
303
+ symbol: "ETH",
304
+ decimals: 18
305
+ },
306
+ viemChain: import_chains.linea,
307
+ accessControlIndexerUrl: "https://openzeppelin-linea-mainnet.graphql.subquery.network/"
308
+ };
309
+
310
+ // src/networks/testnet.ts
311
+ var import_react2 = require("@web3icons/react");
312
+ var import_chains2 = require("viem/chains");
313
+ var ethereumSepolia = {
314
+ id: "ethereum-sepolia",
315
+ exportConstName: "ethereumSepolia",
316
+ name: "Sepolia",
317
+ ecosystem: "evm",
318
+ network: "ethereum",
319
+ type: "testnet",
320
+ isTestnet: true,
321
+ chainId: 11155111,
322
+ rpcUrl: import_chains2.sepolia.rpcUrls.default.http[0],
323
+ explorerUrl: "https://sepolia.etherscan.io",
324
+ apiUrl: "https://api.etherscan.io/v2/api",
325
+ primaryExplorerApiIdentifier: "etherscan-v2",
326
+ supportsEtherscanV2: true,
327
+ iconComponent: import_react2.NetworkEthereum,
328
+ nativeCurrency: {
329
+ name: "Sepolia Ether",
330
+ symbol: "ETH",
331
+ decimals: 18
332
+ },
333
+ viemChain: import_chains2.sepolia,
334
+ accessControlIndexerUrl: "https://openzeppelin-ethereum-sepolia.graphql.subquery.network/"
335
+ };
336
+ var arbitrumSepolia = {
337
+ id: "arbitrum-sepolia",
338
+ exportConstName: "arbitrumSepolia",
339
+ name: "Arbitrum Sepolia",
340
+ ecosystem: "evm",
341
+ network: "arbitrum",
342
+ type: "testnet",
343
+ isTestnet: true,
344
+ chainId: 421614,
345
+ rpcUrl: import_chains2.arbitrumSepolia.rpcUrls.default.http[0],
346
+ explorerUrl: "https://sepolia.arbiscan.io",
347
+ apiUrl: "https://api.etherscan.io/v2/api",
348
+ primaryExplorerApiIdentifier: "etherscan-v2",
349
+ supportsEtherscanV2: true,
350
+ iconComponent: import_react2.NetworkArbitrumOne,
351
+ nativeCurrency: {
352
+ name: "Arbitrum Sepolia Ether",
353
+ symbol: "ETH",
354
+ decimals: 18
355
+ },
356
+ viemChain: import_chains2.arbitrumSepolia,
357
+ accessControlIndexerUrl: "https://openzeppelin-arbitrum-sepolia.graphql.subquery.network/"
358
+ };
359
+ var polygonAmoy = {
360
+ id: "polygon-amoy",
361
+ exportConstName: "polygonAmoy",
362
+ name: "Polygon Amoy",
363
+ ecosystem: "evm",
364
+ network: "polygon",
365
+ type: "testnet",
366
+ isTestnet: true,
367
+ chainId: 80002,
368
+ rpcUrl: import_chains2.polygonAmoy.rpcUrls.default.http[0],
369
+ explorerUrl: "https://amoy.polygonscan.com",
370
+ apiUrl: "https://api.etherscan.io/v2/api",
371
+ primaryExplorerApiIdentifier: "etherscan-v2",
372
+ supportsEtherscanV2: true,
373
+ iconComponent: import_react2.NetworkPolygon,
374
+ nativeCurrency: {
375
+ name: "MATIC",
376
+ symbol: "MATIC",
377
+ decimals: 18
378
+ },
379
+ viemChain: import_chains2.polygonAmoy,
380
+ accessControlIndexerUrl: "https://openzeppelin-polygon-amoy.graphql.subquery.network/"
381
+ };
382
+ var polygonZkEvmCardona = {
383
+ id: "polygon-zkevm-cardona",
384
+ exportConstName: "polygonZkEvmCardona",
385
+ name: "Polygon zkEVM Cardona",
386
+ ecosystem: "evm",
387
+ network: "polygon-zkevm",
388
+ type: "testnet",
389
+ isTestnet: true,
390
+ chainId: 2442,
391
+ rpcUrl: import_chains2.polygonZkEvmCardona.rpcUrls.default.http[0],
392
+ explorerUrl: "https://cardona-zkevm.polygonscan.com",
393
+ apiUrl: "https://api.etherscan.io/v2/api",
394
+ primaryExplorerApiIdentifier: "etherscan-v2",
395
+ supportsEtherscanV2: true,
396
+ iconComponent: import_react2.NetworkPolygon,
397
+ nativeCurrency: {
398
+ name: "Ether",
399
+ symbol: "ETH",
400
+ decimals: 18
401
+ },
402
+ viemChain: import_chains2.polygonZkEvmCardona,
403
+ accessControlIndexerUrl: "https://openzeppelin-polygon-zkevm-cardona.graphql.subquery.network/"
404
+ };
405
+ var baseSepolia = {
406
+ id: "base-sepolia",
407
+ exportConstName: "baseSepolia",
408
+ name: "Base Sepolia",
409
+ ecosystem: "evm",
410
+ network: "base",
411
+ type: "testnet",
412
+ isTestnet: true,
413
+ chainId: 84532,
414
+ rpcUrl: import_chains2.baseSepolia.rpcUrls.default.http[0],
415
+ explorerUrl: "https://sepolia.basescan.org",
416
+ apiUrl: "https://api.etherscan.io/v2/api",
417
+ primaryExplorerApiIdentifier: "etherscan-v2",
418
+ supportsEtherscanV2: true,
419
+ iconComponent: import_react2.NetworkBase,
420
+ nativeCurrency: {
421
+ name: "Sepolia Ether",
422
+ symbol: "ETH",
423
+ decimals: 18
424
+ },
425
+ viemChain: import_chains2.baseSepolia,
426
+ accessControlIndexerUrl: "https://openzeppelin-base-sepolia.graphql.subquery.network/"
427
+ };
428
+ var bscTestnet = {
429
+ id: "bsc-testnet",
430
+ exportConstName: "bscTestnet",
431
+ name: "BSC Testnet",
432
+ ecosystem: "evm",
433
+ network: "bsc",
434
+ type: "testnet",
435
+ isTestnet: true,
436
+ chainId: 97,
437
+ rpcUrl: import_chains2.bscTestnet.rpcUrls.default.http[0],
438
+ explorerUrl: "https://testnet.bscscan.com",
439
+ apiUrl: "https://api.etherscan.io/v2/api",
440
+ primaryExplorerApiIdentifier: "etherscan-v2",
441
+ supportsEtherscanV2: true,
442
+ iconComponent: import_react2.NetworkBinanceSmartChain,
443
+ nativeCurrency: {
444
+ name: "BNB",
445
+ symbol: "BNB",
446
+ decimals: 18
447
+ },
448
+ viemChain: import_chains2.bscTestnet,
449
+ accessControlIndexerUrl: "https://openzeppelin-bsc-testnet.graphql.subquery.network/"
450
+ };
451
+ var optimismSepolia = {
452
+ id: "optimism-sepolia",
453
+ exportConstName: "optimismSepolia",
454
+ name: "OP Sepolia",
455
+ ecosystem: "evm",
456
+ network: "optimism",
457
+ type: "testnet",
458
+ isTestnet: true,
459
+ chainId: 11155420,
460
+ rpcUrl: import_chains2.optimismSepolia.rpcUrls.default.http[0],
461
+ explorerUrl: "https://sepolia-optimism.etherscan.io",
462
+ apiUrl: "https://api.etherscan.io/v2/api",
463
+ primaryExplorerApiIdentifier: "etherscan-v2",
464
+ supportsEtherscanV2: true,
465
+ iconComponent: import_react2.NetworkOptimism,
466
+ nativeCurrency: {
467
+ name: "Sepolia Ether",
468
+ symbol: "ETH",
469
+ decimals: 18
470
+ },
471
+ viemChain: import_chains2.optimismSepolia,
472
+ accessControlIndexerUrl: "https://openzeppelin-optimism-sepolia.graphql.subquery.network/"
473
+ };
474
+ var avalancheFuji = {
475
+ id: "avalanche-fuji",
476
+ exportConstName: "avalancheFuji",
477
+ name: "Avalanche Fuji C-Chain",
478
+ ecosystem: "evm",
479
+ network: "avalanche",
480
+ type: "testnet",
481
+ isTestnet: true,
482
+ chainId: 43113,
483
+ rpcUrl: import_chains2.avalancheFuji.rpcUrls.default.http[0],
484
+ explorerUrl: "https://testnet.snowscan.xyz",
485
+ apiUrl: "https://api.etherscan.io/v2/api",
486
+ // Using Etherscan V2 unified API
487
+ primaryExplorerApiIdentifier: "etherscan-v2",
488
+ // Unified identifier for V2 API
489
+ supportsEtherscanV2: true,
490
+ requiresExplorerApiKey: true,
491
+ iconComponent: import_react2.NetworkAvalanche,
492
+ nativeCurrency: {
493
+ name: "Avalanche",
494
+ symbol: "AVAX",
495
+ decimals: 18
496
+ },
497
+ viemChain: import_chains2.avalancheFuji,
498
+ accessControlIndexerUrl: "https://openzeppelin-avalanche-fuji.graphql.subquery.network/"
499
+ };
500
+ var zksyncSepoliaTestnet = {
501
+ id: "zksync-era-sepolia",
502
+ exportConstName: "zksyncSepoliaTestnet",
503
+ name: "ZkSync Era Sepolia",
504
+ ecosystem: "evm",
505
+ network: "zksync-era",
506
+ type: "testnet",
507
+ isTestnet: true,
508
+ chainId: 300,
509
+ rpcUrl: import_chains2.zksyncSepoliaTestnet.rpcUrls.default.http[0],
510
+ explorerUrl: "https://sepolia.explorer.zksync.io",
511
+ apiUrl: "https://block-explorer-api.sepolia.zksync.dev/api",
512
+ primaryExplorerApiIdentifier: "zksync-era-sepolia",
513
+ supportsEtherscanV2: false,
514
+ iconComponent: import_react2.NetworkZksync,
515
+ nativeCurrency: {
516
+ name: "Ether",
517
+ symbol: "ETH",
518
+ decimals: 18
519
+ },
520
+ viemChain: import_chains2.zksyncSepoliaTestnet,
521
+ accessControlIndexerUrl: "https://openzeppelin-zksync-era-sepolia.graphql.subquery.network/"
522
+ };
523
+ var scrollSepolia = {
524
+ id: "scroll-sepolia",
525
+ exportConstName: "scrollSepolia",
526
+ name: "Scroll Sepolia",
527
+ ecosystem: "evm",
528
+ network: "scroll",
529
+ type: "testnet",
530
+ isTestnet: true,
531
+ chainId: 534351,
532
+ rpcUrl: import_chains2.scrollSepolia.rpcUrls.default.http[0],
533
+ explorerUrl: "https://sepolia.scrollscan.dev",
534
+ apiUrl: "https://api.etherscan.io/v2/api",
535
+ primaryExplorerApiIdentifier: "etherscan-v2",
536
+ supportsEtherscanV2: true,
537
+ iconComponent: import_react2.NetworkScroll,
538
+ nativeCurrency: {
539
+ name: "Ether",
540
+ symbol: "ETH",
541
+ decimals: 18
542
+ },
543
+ viemChain: import_chains2.scrollSepolia,
544
+ accessControlIndexerUrl: "https://openzeppelin-scroll-sepolia.graphql.subquery.network/"
545
+ };
546
+ var lineaSepolia = {
547
+ id: "linea-sepolia",
548
+ exportConstName: "lineaSepolia",
549
+ name: "Linea Sepolia",
550
+ ecosystem: "evm",
551
+ network: "linea",
552
+ type: "testnet",
553
+ isTestnet: true,
554
+ chainId: 59141,
555
+ rpcUrl: import_chains2.lineaSepolia.rpcUrls.default.http[0],
556
+ explorerUrl: "https://sepolia.lineascan.build",
557
+ apiUrl: "https://api.etherscan.io/v2/api",
558
+ primaryExplorerApiIdentifier: "etherscan-v2",
559
+ supportsEtherscanV2: true,
560
+ iconComponent: import_react2.NetworkLinea,
561
+ nativeCurrency: {
562
+ name: "Linea Ether",
563
+ symbol: "ETH",
564
+ decimals: 18
565
+ },
566
+ viemChain: import_chains2.lineaSepolia,
567
+ accessControlIndexerUrl: "https://openzeppelin-linea-sepolia.graphql.subquery.network/"
568
+ };
569
+ var monadTestnet = {
570
+ id: "monad-testnet",
571
+ exportConstName: "monadTestnet",
572
+ name: "Monad Testnet",
573
+ ecosystem: "evm",
574
+ network: "monad",
575
+ type: "testnet",
576
+ isTestnet: true,
577
+ chainId: 10143,
578
+ rpcUrl: import_chains2.monadTestnet.rpcUrls.default.http[0],
579
+ explorerUrl: "https://testnet.monadexplorer.com",
580
+ apiUrl: "https://api.etherscan.io/v2/api",
581
+ primaryExplorerApiIdentifier: "etherscan-v2",
582
+ supportsEtherscanV2: true,
583
+ iconComponent: import_react2.NetworkMonad,
584
+ nativeCurrency: {
585
+ name: "Monad",
586
+ symbol: "MON",
587
+ decimals: 18
588
+ },
589
+ viemChain: import_chains2.monadTestnet,
590
+ accessControlIndexerUrl: "https://openzeppelin-monad-testnet.graphql.subquery.network/"
591
+ };
592
+
593
+ // src/networks/index.ts
594
+ var evmMainnetNetworks = [
595
+ ethereumMainnet,
596
+ arbitrumMainnet,
597
+ baseMainnet,
598
+ polygonMainnet,
599
+ polygonZkEvmMainnet,
600
+ bscMainnet,
601
+ optimismMainnet,
602
+ avalancheMainnet,
603
+ lineaMainnet,
604
+ scrollMainnet,
605
+ zkSyncEraMainnet
606
+ // Other mainnet networks...
607
+ ];
608
+ var evmTestnetNetworks = [
609
+ ethereumSepolia,
610
+ arbitrumSepolia,
611
+ baseSepolia,
612
+ polygonAmoy,
613
+ polygonZkEvmCardona,
614
+ bscTestnet,
615
+ optimismSepolia,
616
+ avalancheFuji,
617
+ lineaSepolia,
618
+ scrollSepolia,
619
+ zksyncSepoliaTestnet,
620
+ monadTestnet
621
+ // Other testnet networks...
622
+ ];
623
+ var evmNetworks = [...evmMainnetNetworks, ...evmTestnetNetworks];
624
+ // Annotate the CommonJS export names for ESM import in node:
625
+ 0 && (module.exports = {
626
+ arbitrumMainnet,
627
+ arbitrumSepolia,
628
+ avalancheFuji,
629
+ avalancheMainnet,
630
+ baseMainnet,
631
+ baseSepolia,
632
+ bscMainnet,
633
+ bscTestnet,
634
+ ethereumMainnet,
635
+ ethereumSepolia,
636
+ evmMainnetNetworks,
637
+ evmNetworks,
638
+ evmTestnetNetworks,
639
+ lineaMainnet,
640
+ lineaSepolia,
641
+ monadTestnet,
642
+ networks,
643
+ optimismMainnet,
644
+ optimismSepolia,
645
+ polygonAmoy,
646
+ polygonMainnet,
647
+ polygonZkEvmCardona,
648
+ polygonZkEvmMainnet,
649
+ scrollMainnet,
650
+ scrollSepolia,
651
+ zkSyncEraMainnet,
652
+ zksyncSepoliaTestnet
653
+ });
654
+ //# sourceMappingURL=networks.cjs.map