@bitgo-beta/statics 15.1.1-beta.167 → 15.1.1-beta.1671

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.
Files changed (117) hide show
  1. package/dist/src/account.d.ts +1049 -75
  2. package/dist/src/account.d.ts.map +1 -1
  3. package/dist/src/account.js +1662 -170
  4. package/dist/src/ada.d.ts.map +1 -1
  5. package/dist/src/ada.js +7 -3
  6. package/dist/src/allCoinsAndTokens.d.ts +2 -0
  7. package/dist/src/allCoinsAndTokens.d.ts.map +1 -0
  8. package/dist/src/allCoinsAndTokens.js +1422 -0
  9. package/dist/src/avaxp.d.ts.map +1 -1
  10. package/dist/src/avaxp.js +9 -3
  11. package/dist/src/base.d.ts +2258 -53
  12. package/dist/src/base.d.ts.map +1 -1
  13. package/dist/src/base.js +2353 -63
  14. package/dist/src/canton.d.ts +34 -0
  15. package/dist/src/canton.d.ts.map +1 -0
  16. package/dist/src/canton.js +51 -0
  17. package/dist/src/coinFeatures.d.ts +113 -0
  18. package/dist/src/coinFeatures.d.ts.map +1 -0
  19. package/dist/src/coinFeatures.js +733 -0
  20. package/dist/src/coins/adaTokens.d.ts +2 -0
  21. package/dist/src/coins/adaTokens.d.ts.map +1 -0
  22. package/dist/src/coins/adaTokens.js +22 -0
  23. package/dist/src/coins/avaxTokens.d.ts +2 -0
  24. package/dist/src/coins/avaxTokens.d.ts.map +1 -0
  25. package/dist/src/coins/avaxTokens.js +128 -0
  26. package/dist/src/coins/botOfcTokens.d.ts +3 -0
  27. package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
  28. package/dist/src/coins/botOfcTokens.js +106 -0
  29. package/dist/src/coins/botTokens.d.ts +3 -0
  30. package/dist/src/coins/botTokens.d.ts.map +1 -0
  31. package/dist/src/coins/botTokens.js +108 -0
  32. package/dist/src/coins/bscTokens.d.ts +2 -0
  33. package/dist/src/coins/bscTokens.d.ts.map +1 -0
  34. package/dist/src/coins/bscTokens.js +204 -0
  35. package/dist/src/coins/cantonTokens.d.ts +2 -0
  36. package/dist/src/coins/cantonTokens.d.ts.map +1 -0
  37. package/dist/src/coins/cantonTokens.js +16 -0
  38. package/dist/src/coins/cosmosTokens.d.ts +2 -0
  39. package/dist/src/coins/cosmosTokens.d.ts.map +1 -0
  40. package/dist/src/coins/cosmosTokens.js +14 -0
  41. package/dist/src/coins/erc20Coins.d.ts +2 -0
  42. package/dist/src/coins/erc20Coins.d.ts.map +1 -0
  43. package/dist/src/coins/erc20Coins.js +2016 -0
  44. package/dist/src/coins/generateERC20.d.ts +35 -0
  45. package/dist/src/coins/generateERC20.d.ts.map +1 -0
  46. package/dist/src/coins/generateERC20.js +46 -0
  47. package/dist/src/coins/jettonTokens.d.ts +2 -0
  48. package/dist/src/coins/jettonTokens.d.ts.map +1 -0
  49. package/dist/src/coins/jettonTokens.js +19 -0
  50. package/dist/src/coins/nep141Tokens.d.ts +2 -0
  51. package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
  52. package/dist/src/coins/nep141Tokens.js +17 -0
  53. package/dist/src/coins/ofcCoins.d.ts +2 -0
  54. package/dist/src/coins/ofcCoins.d.ts.map +1 -0
  55. package/dist/src/coins/ofcCoins.js +944 -0
  56. package/dist/src/coins/ofcErc20Coins.d.ts +4 -0
  57. package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
  58. package/dist/src/coins/ofcErc20Coins.js +1767 -0
  59. package/dist/src/coins/polygonTokens.d.ts +2 -0
  60. package/dist/src/coins/polygonTokens.d.ts.map +1 -0
  61. package/dist/src/coins/polygonTokens.js +165 -0
  62. package/dist/src/coins/polyxTokens.d.ts +2 -0
  63. package/dist/src/coins/polyxTokens.d.ts.map +1 -0
  64. package/dist/src/coins/polyxTokens.js +22 -0
  65. package/dist/src/coins/sip10Tokens.d.ts +2 -0
  66. package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
  67. package/dist/src/coins/sip10Tokens.js +25 -0
  68. package/dist/src/coins/solTokens.d.ts +3 -0
  69. package/dist/src/coins/solTokens.d.ts.map +1 -0
  70. package/dist/src/coins/solTokens.js +454 -0
  71. package/dist/src/coins/vetTokens.d.ts +2 -0
  72. package/dist/src/coins/vetTokens.d.ts.map +1 -0
  73. package/dist/src/coins/vetTokens.js +11 -0
  74. package/dist/src/coins.d.ts +11 -1
  75. package/dist/src/coins.d.ts.map +1 -1
  76. package/dist/src/coins.js +410 -1690
  77. package/dist/src/constants.d.ts +1 -0
  78. package/dist/src/constants.d.ts.map +1 -1
  79. package/dist/src/constants.js +3 -2
  80. package/dist/src/errors.d.ts +3 -0
  81. package/dist/src/errors.d.ts.map +1 -1
  82. package/dist/src/errors.js +9 -2
  83. package/dist/src/flrp.d.ts +40 -0
  84. package/dist/src/flrp.d.ts.map +1 -0
  85. package/dist/src/flrp.js +65 -0
  86. package/dist/src/hypeevm.d.ts +28 -0
  87. package/dist/src/hypeevm.d.ts.map +1 -0
  88. package/dist/src/hypeevm.js +60 -0
  89. package/dist/src/index.d.ts +4 -1
  90. package/dist/src/index.d.ts.map +1 -1
  91. package/dist/src/index.js +32 -3
  92. package/dist/src/lightning.d.ts +43 -0
  93. package/dist/src/lightning.d.ts.map +1 -0
  94. package/dist/src/lightning.js +60 -0
  95. package/dist/src/map.d.ts +16 -0
  96. package/dist/src/map.d.ts.map +1 -1
  97. package/dist/src/map.js +194 -17
  98. package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
  99. package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
  100. package/dist/src/networkFeatureMapForTokens.js +31 -0
  101. package/dist/src/networks.d.ts +1753 -33
  102. package/dist/src/networks.d.ts.map +1 -1
  103. package/dist/src/networks.js +2167 -103
  104. package/dist/src/ofc.d.ts +663 -3
  105. package/dist/src/ofc.d.ts.map +1 -1
  106. package/dist/src/ofc.js +1573 -28
  107. package/dist/src/tokenConfig.d.ts +641 -108
  108. package/dist/src/tokenConfig.d.ts.map +1 -1
  109. package/dist/src/tokenConfig.js +1011 -220
  110. package/dist/src/utxo.d.ts +3 -1
  111. package/dist/src/utxo.d.ts.map +1 -1
  112. package/dist/src/utxo.js +84 -3
  113. package/dist/tsconfig.tsbuildinfo +1 -1
  114. package/package.json +6 -3
  115. package/.mocharc.js +0 -10
  116. package/.prettierignore +0 -2
  117. package/CHANGELOG.md +0 -913
@@ -1,3 +1,46 @@
1
+ export interface FlareNetwork extends BaseNetwork {
2
+ name: string;
3
+ family: CoinFamily;
4
+ explorerUrl: string;
5
+ accountExplorerUrl: string;
6
+ chainId?: number;
7
+ nativeCoinOperationHashPrefix?: string;
8
+ batcherContractAddress?: string;
9
+ forwarderFactoryAddress?: string;
10
+ forwarderImplementationAddress?: string;
11
+ blockchainID: string;
12
+ cChainBlockchainID: string;
13
+ networkID: number;
14
+ hrp: string;
15
+ alias: string;
16
+ assetId: string;
17
+ vm?: string;
18
+ txFee: string;
19
+ minImportToPFee: string;
20
+ maxImportFee: string;
21
+ createSubnetTx?: string;
22
+ createChainTx?: string;
23
+ creationTxFee?: string;
24
+ minConsumption?: string;
25
+ maxConsumption?: string;
26
+ maxSupply?: string;
27
+ minStake: string;
28
+ minStakeDuration?: string;
29
+ maxStakeDuration?: string;
30
+ minDelegationStake?: string;
31
+ minDelegationFee?: string;
32
+ flarePublicUrl?: string;
33
+ baseTxFee?: string;
34
+ createAssetTxFee?: string;
35
+ createSubnetTxFee?: string;
36
+ transformSubnetTxFee?: string;
37
+ createBlockchainTxFee?: string;
38
+ addPrimaryNetworkValidatorFee?: string;
39
+ addPrimaryNetworkDelegatorFee?: string;
40
+ addSubnetValidatorFee?: string;
41
+ addSubnetDelegatorFee?: string;
42
+ xChainBlockchainID?: string;
43
+ }
1
44
  import { CoinFamily } from './base';
2
45
  export declare enum NetworkType {
3
46
  MAINNET = "mainnet",
@@ -11,6 +54,25 @@ export declare abstract class BaseNetwork {
11
54
  }
12
55
  export interface UtxoNetwork extends BaseNetwork {
13
56
  utxolibName: string;
57
+ paygoAddressAttestationPubkey?: string;
58
+ }
59
+ export interface LightningNetwork extends UtxoNetwork {
60
+ /**
61
+ * The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
62
+ * between the user's extended private key and the Lightning service. This key facilitates secure communication
63
+ * by enabling the creation of a shared secret for encryption and decryption of data.
64
+ */
65
+ lightningServicePubKey: string;
66
+ /**
67
+ * The public key of the middleware service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
68
+ * between the user's extended private key and the middleware service.
69
+ */
70
+ middlewarePubKey: string;
71
+ /**
72
+ * The public key of the TAT service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
73
+ * between the user's extended private key and the TAT service.
74
+ */
75
+ tatPubKey: string;
14
76
  }
15
77
  export interface AdaNetwork extends BaseNetwork {
16
78
  utxolibName: string;
@@ -40,15 +102,25 @@ export interface AvalancheNetwork extends BaseNetwork {
40
102
  readonly minDelegationFee: string;
41
103
  readonly avaxAssetID: string;
42
104
  readonly txFee: string;
105
+ readonly maxImportFee: string;
43
106
  }
44
107
  export interface AccountNetwork extends BaseNetwork {
45
108
  readonly accountExplorerUrl?: string;
46
109
  readonly blockExplorerUrl?: string;
47
110
  }
111
+ export interface CosmosNetwork extends AccountNetwork {
112
+ readonly addressPrefix: string;
113
+ readonly validatorPrefix: string;
114
+ readonly denom: string;
115
+ readonly gasAmount: string;
116
+ readonly gasLimit: number;
117
+ readonly validDenoms: string[];
118
+ }
48
119
  /**
49
120
  * Specification name type of the chain. Used in setting up the registry
50
121
  */
51
- export declare type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
122
+ export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'westmint';
123
+ export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet' | 'polymesh_mainnet';
52
124
  export interface DotNetwork extends AccountNetwork {
53
125
  readonly specName: PolkadotSpecNameType;
54
126
  readonly genesisHash: string;
@@ -61,6 +133,18 @@ export interface EthereumNetwork extends AccountNetwork {
61
133
  readonly batcherContractAddress?: string;
62
134
  readonly forwarderFactoryAddress?: string;
63
135
  readonly forwarderImplementationAddress?: string;
136
+ readonly walletV2ForwarderFactoryAddress?: string;
137
+ readonly walletV2ForwarderImplementationAddress?: string;
138
+ readonly walletV4ForwarderFactoryAddress?: string;
139
+ readonly walletV4ForwarderImplementationAddress?: string;
140
+ readonly walletFactoryAddress?: string;
141
+ readonly walletImplementationAddress?: string;
142
+ readonly walletV2FactoryAddress?: string;
143
+ readonly walletV2ImplementationAddress?: string;
144
+ readonly walletV4FactoryAddress?: string;
145
+ readonly walletV4ImplementationAddress?: string;
146
+ readonly nativeCoinOperationHashPrefix?: string;
147
+ readonly tokenOperationHashPrefix?: string;
64
148
  }
65
149
  export interface TronNetwork extends AccountNetwork {
66
150
  maxFeeLimit: string;
@@ -95,6 +179,7 @@ declare class Ada extends Mainnet implements AdaNetwork {
95
179
  poolDeposit: number;
96
180
  stakeKeyDeposit: number;
97
181
  explorerUrl: string;
182
+ accountExplorerUrl: string;
98
183
  coinsPerUtxoWord: number;
99
184
  maxTransactionSize: number;
100
185
  maxValueSize: number;
@@ -104,18 +189,52 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
104
189
  family: CoinFamily;
105
190
  utxolibName: string;
106
191
  explorerUrl: string;
192
+ accountExplorerUrl: string;
107
193
  coinsPerUtxoWord: number;
108
194
  maxTransactionSize: number;
109
195
  maxValueSize: number;
110
196
  poolDeposit: number;
111
197
  stakeKeyDeposit: number;
112
198
  }
199
+ declare class Apt extends Mainnet implements AccountNetwork {
200
+ name: string;
201
+ family: CoinFamily;
202
+ explorerUrl: string;
203
+ accountExplorerUrl: string;
204
+ blockExplorerUrl: string;
205
+ }
206
+ declare class AptTestnet extends Testnet implements AccountNetwork {
207
+ name: string;
208
+ family: CoinFamily;
209
+ explorerUrl: string;
210
+ accountExplorerUrl: string;
211
+ blockExplorerUrl: string;
212
+ }
213
+ declare class Icp extends Mainnet implements AccountNetwork {
214
+ name: string;
215
+ family: CoinFamily;
216
+ explorerUrl: string;
217
+ accountExplorerUrl: string;
218
+ }
219
+ declare class IcpTestnet extends Testnet implements AccountNetwork {
220
+ name: string;
221
+ family: CoinFamily;
222
+ explorerUrl: string;
223
+ accountExplorerUrl: string;
224
+ }
113
225
  declare class Arbitrum extends Mainnet implements EthereumNetwork {
114
226
  name: string;
115
227
  family: CoinFamily;
116
228
  explorerUrl: string;
117
229
  accountExplorerUrl: string;
118
230
  chainId: number;
231
+ nativeCoinOperationHashPrefix: string;
232
+ tokenOperationHashPrefix: string;
233
+ forwarderFactoryAddress: string;
234
+ forwarderImplementationAddress: string;
235
+ walletFactoryAddress: string;
236
+ walletImplementationAddress: string;
237
+ batcherContractAddress: string;
119
238
  }
120
239
  declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
121
240
  name: string;
@@ -123,6 +242,13 @@ declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
123
242
  explorerUrl: string;
124
243
  accountExplorerUrl: string;
125
244
  chainId: number;
245
+ nativeCoinOperationHashPrefix: string;
246
+ tokenOperationHashPrefix: string;
247
+ forwarderFactoryAddress: string;
248
+ forwarderImplementationAddress: string;
249
+ walletFactoryAddress: string;
250
+ walletImplementationAddress: string;
251
+ batcherContractAddress: string;
126
252
  }
127
253
  declare class AvalancheC extends Mainnet implements AccountNetwork {
128
254
  name: string;
@@ -130,6 +256,7 @@ declare class AvalancheC extends Mainnet implements AccountNetwork {
130
256
  explorerUrl: string;
131
257
  accountExplorerUrl: string;
132
258
  chainId: number;
259
+ batcherContractAddress: string;
133
260
  }
134
261
  declare class AvalancheCTestnet extends Testnet implements AccountNetwork {
135
262
  name: string;
@@ -137,6 +264,7 @@ declare class AvalancheCTestnet extends Testnet implements AccountNetwork {
137
264
  explorerUrl: string;
138
265
  accountExplorerUrl: string;
139
266
  chainId: number;
267
+ batcherContractAddress: string;
140
268
  }
141
269
  declare class AvalancheP extends Mainnet implements AvalancheNetwork {
142
270
  name: string;
@@ -151,6 +279,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
151
279
  alias: string;
152
280
  vm: string;
153
281
  txFee: string;
282
+ maxImportFee: string;
154
283
  createSubnetTx: string;
155
284
  createChainTx: string;
156
285
  creationTxFee: string;
@@ -176,6 +305,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
176
305
  hrp: string;
177
306
  vm: string;
178
307
  txFee: string;
308
+ maxImportFee: string;
179
309
  createSubnetTx: string;
180
310
  createChainTx: string;
181
311
  creationTxFee: string;
@@ -194,6 +324,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
194
324
  explorerUrl: string;
195
325
  accountExplorerUrl: string;
196
326
  chainId: number;
327
+ nativeCoinOperationHashPrefix: string;
328
+ tokenOperationHashPrefix: string;
329
+ batcherContractAddress: string;
197
330
  }
198
331
  declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
199
332
  name: string;
@@ -201,6 +334,63 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
201
334
  explorerUrl: string;
202
335
  accountExplorerUrl: string;
203
336
  chainId: number;
337
+ nativeCoinOperationHashPrefix: string;
338
+ tokenOperationHashPrefix: string;
339
+ batcherContractAddress: string;
340
+ }
341
+ declare class OpBNB extends Mainnet implements EthereumNetwork {
342
+ name: string;
343
+ family: CoinFamily;
344
+ explorerUrl: string;
345
+ accountExplorerUrl: string;
346
+ chainId: number;
347
+ nativeCoinOperationHashPrefix: string;
348
+ tokenOperationHashPrefix: string;
349
+ }
350
+ declare class OpBNBTestnet extends Testnet implements EthereumNetwork {
351
+ name: string;
352
+ family: CoinFamily;
353
+ explorerUrl: string;
354
+ accountExplorerUrl: string;
355
+ chainId: number;
356
+ nativeCoinOperationHashPrefix: string;
357
+ tokenOperationHashPrefix: string;
358
+ }
359
+ declare class Fantom extends Mainnet implements EthereumNetwork {
360
+ name: string;
361
+ family: CoinFamily;
362
+ explorerUrl: string;
363
+ accountExplorerUrl: string;
364
+ chainId: number;
365
+ nativeCoinOperationHashPrefix: string;
366
+ tokenOperationHashPrefix: string;
367
+ }
368
+ declare class FantomTestnet extends Testnet implements EthereumNetwork {
369
+ name: string;
370
+ family: CoinFamily;
371
+ explorerUrl: string;
372
+ accountExplorerUrl: string;
373
+ chainId: number;
374
+ nativeCoinOperationHashPrefix: string;
375
+ tokenOperationHashPrefix: string;
376
+ }
377
+ declare class LightningBitcoin extends Mainnet implements LightningNetwork {
378
+ name: string;
379
+ family: CoinFamily;
380
+ utxolibName: string;
381
+ explorerUrl: string;
382
+ lightningServicePubKey: string;
383
+ middlewarePubKey: string;
384
+ tatPubKey: string;
385
+ }
386
+ declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
387
+ name: string;
388
+ family: CoinFamily;
389
+ utxolibName: string;
390
+ explorerUrl: string;
391
+ lightningServicePubKey: string;
392
+ middlewarePubKey: string;
393
+ tatPubKey: string;
204
394
  }
205
395
  declare class Bitcoin extends Mainnet implements UtxoNetwork {
206
396
  name: string;
@@ -213,6 +403,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
213
403
  family: CoinFamily;
214
404
  utxolibName: string;
215
405
  explorerUrl: string;
406
+ paygoAddressAttestationPubkey: string;
407
+ }
408
+ declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
409
+ name: string;
410
+ family: CoinFamily;
411
+ utxolibName: string;
412
+ explorerUrl: string;
413
+ }
414
+ declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
415
+ name: string;
416
+ family: CoinFamily;
417
+ utxolibName: string;
418
+ explorerUrl: string;
419
+ }
420
+ declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
421
+ name: string;
422
+ family: CoinFamily;
423
+ utxolibName: string;
424
+ explorerUrl: string;
216
425
  }
217
426
  declare class BitcoinCash extends Mainnet implements UtxoNetwork {
218
427
  name: string;
@@ -286,7 +495,7 @@ declare class ECashTestnet extends Testnet implements UtxoNetwork {
286
495
  utxolibName: string;
287
496
  explorerUrl: undefined;
288
497
  }
289
- declare class Polkadot extends Mainnet implements DotNetwork {
498
+ declare class PolkadotAssetHub extends Mainnet implements DotNetwork {
290
499
  name: string;
291
500
  family: CoinFamily;
292
501
  explorerUrl: string;
@@ -296,7 +505,7 @@ declare class Polkadot extends Mainnet implements DotNetwork {
296
505
  chainName: string;
297
506
  txVersion: number;
298
507
  }
299
- declare class PolkadotTestnet extends Testnet implements DotNetwork {
508
+ declare class WestendAssetHub extends Testnet implements DotNetwork {
300
509
  name: string;
301
510
  family: CoinFamily;
302
511
  explorerUrl: string;
@@ -312,6 +521,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
312
521
  explorerUrl: string;
313
522
  accountExplorerUrl: string;
314
523
  chainId: number;
524
+ nativeCoinOperationHashPrefix: string;
525
+ tokenOperationHashPrefix: string;
315
526
  }
316
527
  declare class CeloTestnet extends Testnet implements EthereumNetwork {
317
528
  name: string;
@@ -319,6 +530,42 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
319
530
  explorerUrl: string;
320
531
  accountExplorerUrl: string;
321
532
  chainId: number;
533
+ nativeCoinOperationHashPrefix: string;
534
+ tokenOperationHashPrefix: string;
535
+ }
536
+ declare class Chiliz extends Mainnet implements EthereumNetwork {
537
+ name: string;
538
+ family: CoinFamily;
539
+ explorerUrl: string;
540
+ accountExplorerUrl: string;
541
+ chainId: number;
542
+ nativeCoinOperationHashPrefix: string;
543
+ tokenOperationHashPrefix: string;
544
+ }
545
+ declare class ChilizTestnet extends Testnet implements EthereumNetwork {
546
+ name: string;
547
+ family: CoinFamily;
548
+ explorerUrl: string;
549
+ accountExplorerUrl: string;
550
+ chainId: number;
551
+ nativeCoinOperationHashPrefix: string;
552
+ tokenOperationHashPrefix: string;
553
+ }
554
+ declare class CodexEth extends Mainnet implements EthereumNetwork {
555
+ name: string;
556
+ family: CoinFamily;
557
+ explorerUrl: string;
558
+ accountExplorerUrl: string;
559
+ chainId: number;
560
+ nativeCoinOperationHashPrefix: string;
561
+ }
562
+ declare class CodexEthTestnet extends Testnet implements EthereumNetwork {
563
+ name: string;
564
+ family: CoinFamily;
565
+ explorerUrl: string;
566
+ accountExplorerUrl: string;
567
+ chainId: number;
568
+ nativeCoinOperationHashPrefix: string;
322
569
  }
323
570
  declare class Casper extends Mainnet implements AccountNetwork {
324
571
  name: string;
@@ -342,6 +589,18 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
342
589
  batcherContractAddress: string;
343
590
  forwarderFactoryAddress: string;
344
591
  forwarderImplementationAddress: string;
592
+ walletV2ForwarderFactoryAddress: string;
593
+ walletV2ForwarderImplementationAddress: string;
594
+ walletV4ForwarderFactoryAddress: string;
595
+ walletV4ForwarderImplementationAddress: string;
596
+ nativeCoinOperationHashPrefix: string;
597
+ tokenOperationHashPrefix: string;
598
+ walletFactoryAddress: string;
599
+ walletImplementationAddress: string;
600
+ walletV2FactoryAddress: string;
601
+ walletV2ImplementationAddress: string;
602
+ walletV4FactoryAddress: string;
603
+ walletV4ImplementationAddress: string;
345
604
  }
346
605
  declare class Ethereum2 extends Mainnet implements AccountNetwork {
347
606
  name: string;
@@ -358,6 +617,24 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
358
617
  batcherContractAddress: string;
359
618
  forwarderFactoryAddress: string;
360
619
  forwarderImplementationAddress: string;
620
+ nativeCoinOperationHashPrefix: string;
621
+ tokenOperationHashPrefix: string;
622
+ }
623
+ declare class XtzEvm extends Mainnet implements EthereumNetwork {
624
+ name: string;
625
+ family: CoinFamily;
626
+ explorerUrl: string;
627
+ accountExplorerUrl: string;
628
+ chainId: number;
629
+ nativeCoinOperationHashPrefix: string;
630
+ }
631
+ declare class XtzEvmTestnet extends Testnet implements EthereumNetwork {
632
+ name: string;
633
+ family: CoinFamily;
634
+ explorerUrl: string;
635
+ accountExplorerUrl: string;
636
+ chainId: number;
637
+ nativeCoinOperationHashPrefix: string;
361
638
  }
362
639
  declare class Pyrmont extends Testnet implements AccountNetwork {
363
640
  name: string;
@@ -374,6 +651,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
374
651
  batcherContractAddress: string;
375
652
  forwarderFactoryAddress: string;
376
653
  forwarderImplementationAddress: string;
654
+ nativeCoinOperationHashPrefix: string;
655
+ tokenOperationHashPrefix: string;
377
656
  }
378
657
  declare class Goerli extends Testnet implements EthereumNetwork {
379
658
  name: string;
@@ -385,6 +664,8 @@ declare class Goerli extends Testnet implements EthereumNetwork {
385
664
  batcherContractAddress: string;
386
665
  forwarderFactoryAddress: string;
387
666
  forwarderImplementationAddress: string;
667
+ nativeCoinOperationHashPrefix: string;
668
+ tokenOperationHashPrefix: string;
388
669
  }
389
670
  declare class Holesky extends Testnet implements EthereumNetwork {
390
671
  name: string;
@@ -396,6 +677,33 @@ declare class Holesky extends Testnet implements EthereumNetwork {
396
677
  batcherContractAddress: string;
397
678
  forwarderFactoryAddress: string;
398
679
  forwarderImplementationAddress: string;
680
+ nativeCoinOperationHashPrefix: string;
681
+ tokenOperationHashPrefix: string;
682
+ walletV4ForwarderFactoryAddress: string;
683
+ walletV4ForwarderImplementationAddress: string;
684
+ }
685
+ declare class Hoodi extends Testnet implements EthereumNetwork {
686
+ name: string;
687
+ family: CoinFamily;
688
+ explorerUrl: string;
689
+ accountExplorerUrl: string;
690
+ blockExplorerUrl: string;
691
+ chainId: number;
692
+ batcherContractAddress: string;
693
+ forwarderFactoryAddress: string;
694
+ forwarderImplementationAddress: string;
695
+ walletV2ForwarderFactoryAddress: string;
696
+ walletV2ForwarderImplementationAddress: string;
697
+ walletV4ForwarderFactoryAddress: string;
698
+ walletV4ForwarderImplementationAddress: string;
699
+ walletFactoryAddress: string;
700
+ walletImplementationAddress: string;
701
+ walletV2FactoryAddress: string;
702
+ walletV2ImplementationAddress: string;
703
+ walletV4FactoryAddress: string;
704
+ walletV4ImplementationAddress: string;
705
+ nativeCoinOperationHashPrefix: string;
706
+ tokenOperationHashPrefix: string;
399
707
  }
400
708
  declare class EthereumClassic extends Mainnet implements EthereumNetwork {
401
709
  name: string;
@@ -403,6 +711,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
403
711
  explorerUrl: string;
404
712
  accountExplorerUrl: string;
405
713
  chainId: number;
714
+ nativeCoinOperationHashPrefix: string;
715
+ tokenOperationHashPrefix: string;
406
716
  }
407
717
  declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
408
718
  name: string;
@@ -410,6 +720,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
410
720
  explorerUrl: string;
411
721
  accountExplorerUrl: string;
412
722
  chainId: number;
723
+ nativeCoinOperationHashPrefix: string;
724
+ tokenOperationHashPrefix: string;
413
725
  }
414
726
  declare class Eos extends Mainnet implements AccountNetwork {
415
727
  name: string;
@@ -459,6 +771,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
459
771
  explorerUrl: string;
460
772
  accountExplorerUrl: string;
461
773
  chainId: number;
774
+ nativeCoinOperationHashPrefix: string;
775
+ tokenOperationHashPrefix: string;
462
776
  }
463
777
  declare class RbtcTestnet extends Testnet implements EthereumNetwork {
464
778
  name: string;
@@ -466,6 +780,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
466
780
  explorerUrl: string;
467
781
  accountExplorerUrl: string;
468
782
  chainId: number;
783
+ nativeCoinOperationHashPrefix: string;
784
+ tokenOperationHashPrefix: string;
469
785
  }
470
786
  declare class Stellar extends Mainnet implements AccountNetwork {
471
787
  name: string;
@@ -491,11 +807,13 @@ declare class Sui extends Mainnet implements AccountNetwork {
491
807
  name: string;
492
808
  family: CoinFamily;
493
809
  explorerUrl: string;
810
+ accountExplorerUrl: string;
494
811
  }
495
812
  declare class SuiTestnet extends Testnet implements AccountNetwork {
496
813
  name: string;
497
814
  family: CoinFamily;
498
815
  explorerUrl: string;
816
+ accountExplorerUrl: string;
499
817
  }
500
818
  declare class Atom extends Mainnet implements AccountNetwork {
501
819
  name: string;
@@ -577,15 +895,49 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
577
895
  family: CoinFamily;
578
896
  explorerUrl: string;
579
897
  }
580
- declare class Kava extends Mainnet implements AccountNetwork {
898
+ declare class KavaCosmos extends Mainnet implements CosmosNetwork {
899
+ name: string;
900
+ family: CoinFamily;
901
+ explorerUrl: string;
902
+ addressPrefix: string;
903
+ validatorPrefix: string;
904
+ denom: string;
905
+ gasAmount: string;
906
+ gasLimit: number;
907
+ validDenoms: string[];
908
+ }
909
+ declare class KavaCosmosTestnet extends Testnet implements CosmosNetwork {
910
+ name: string;
911
+ family: CoinFamily;
912
+ explorerUrl: string;
913
+ addressPrefix: string;
914
+ validatorPrefix: string;
915
+ denom: string;
916
+ gasAmount: string;
917
+ gasLimit: number;
918
+ validDenoms: string[];
919
+ }
920
+ declare class Dydx extends Mainnet implements CosmosNetwork {
581
921
  name: string;
582
922
  family: CoinFamily;
583
923
  explorerUrl: string;
924
+ addressPrefix: string;
925
+ validatorPrefix: string;
926
+ denom: string;
927
+ gasAmount: string;
928
+ gasLimit: number;
929
+ validDenoms: string[];
584
930
  }
585
- declare class KavaTestnet extends Testnet implements AccountNetwork {
931
+ declare class DydxTestnet extends Testnet implements CosmosNetwork {
586
932
  name: string;
587
933
  family: CoinFamily;
588
934
  explorerUrl: string;
935
+ addressPrefix: string;
936
+ validatorPrefix: string;
937
+ denom: string;
938
+ gasAmount: string;
939
+ gasLimit: number;
940
+ validDenoms: string[];
589
941
  }
590
942
  declare class Ton extends Mainnet implements AccountNetwork {
591
943
  name: string;
@@ -607,15 +959,87 @@ declare class CoreumTestnet extends Testnet implements AccountNetwork {
607
959
  family: CoinFamily;
608
960
  explorerUrl: string;
609
961
  }
610
- declare class Bera extends Mainnet implements AccountNetwork {
962
+ declare class Rune extends Mainnet implements AccountNetwork {
611
963
  name: string;
612
964
  family: CoinFamily;
613
- explorerUrl: undefined;
965
+ explorerUrl: string;
614
966
  }
615
- declare class BeraTestnet extends Testnet implements AccountNetwork {
967
+ declare class RuneTestNet extends Testnet implements AccountNetwork {
616
968
  name: string;
617
969
  family: CoinFamily;
618
- explorerUrl: undefined;
970
+ explorerUrl: string;
971
+ }
972
+ declare class Baby extends Mainnet implements AccountNetwork {
973
+ name: string;
974
+ family: CoinFamily;
975
+ explorerUrl: string;
976
+ }
977
+ declare class BabyTestnet extends Testnet implements AccountNetwork {
978
+ name: string;
979
+ family: CoinFamily;
980
+ explorerUrl: string;
981
+ }
982
+ declare class Mantra extends Mainnet implements CosmosNetwork {
983
+ name: string;
984
+ family: CoinFamily;
985
+ explorerUrl: string;
986
+ addressPrefix: string;
987
+ validatorPrefix: string;
988
+ denom: string;
989
+ gasAmount: string;
990
+ gasLimit: number;
991
+ validDenoms: string[];
992
+ }
993
+ declare class MantraTestnet extends Testnet implements CosmosNetwork {
994
+ name: string;
995
+ family: CoinFamily;
996
+ explorerUrl: string;
997
+ addressPrefix: string;
998
+ validatorPrefix: string;
999
+ denom: string;
1000
+ gasAmount: string;
1001
+ gasLimit: number;
1002
+ validDenoms: string[];
1003
+ }
1004
+ declare class Cronos extends Mainnet implements AccountNetwork {
1005
+ name: string;
1006
+ family: CoinFamily;
1007
+ explorerUrl: string;
1008
+ }
1009
+ declare class CronosTestnet extends Testnet implements AccountNetwork {
1010
+ name: string;
1011
+ family: CoinFamily;
1012
+ explorerUrl: string;
1013
+ }
1014
+ declare class FetchAi extends Mainnet implements AccountNetwork {
1015
+ name: string;
1016
+ family: CoinFamily;
1017
+ explorerUrl: string;
1018
+ }
1019
+ declare class FetchAiTestnet extends Testnet implements AccountNetwork {
1020
+ name: string;
1021
+ family: CoinFamily;
1022
+ explorerUrl: string;
1023
+ }
1024
+ declare class Initia extends Mainnet implements AccountNetwork {
1025
+ name: string;
1026
+ family: CoinFamily;
1027
+ explorerUrl: string;
1028
+ }
1029
+ declare class InitiaTestnet extends Testnet implements AccountNetwork {
1030
+ name: string;
1031
+ family: CoinFamily;
1032
+ explorerUrl: string;
1033
+ }
1034
+ declare class Asi extends Mainnet implements AccountNetwork {
1035
+ name: string;
1036
+ family: CoinFamily;
1037
+ explorerUrl: string;
1038
+ }
1039
+ declare class AsiTestnet extends Testnet implements AccountNetwork {
1040
+ name: string;
1041
+ family: CoinFamily;
1042
+ explorerUrl: string;
619
1043
  }
620
1044
  declare class Islm extends Mainnet implements AccountNetwork {
621
1045
  name: string;
@@ -661,9 +1085,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
661
1085
  family: CoinFamily;
662
1086
  explorerUrl: undefined;
663
1087
  }
1088
+ declare class Bittensor extends Mainnet implements AccountNetwork {
1089
+ name: string;
1090
+ family: CoinFamily;
1091
+ explorerUrl: string;
1092
+ }
1093
+ declare class BittensorTestnet extends Testnet implements AccountNetwork {
1094
+ name: string;
1095
+ family: CoinFamily;
1096
+ explorerUrl: string;
1097
+ specName: SubstrateSpecNameType;
1098
+ genesisHash: string;
1099
+ specVersion: number;
1100
+ chainName: string;
1101
+ txVersion: number;
1102
+ }
664
1103
  declare class Trx extends Mainnet implements TronNetwork {
665
1104
  name: string;
666
1105
  family: CoinFamily;
1106
+ accountExplorerUrl: string;
667
1107
  explorerUrl: string;
668
1108
  maxFeeLimit: string;
669
1109
  contractCallFeeLimit: string;
@@ -671,6 +1111,7 @@ declare class Trx extends Mainnet implements TronNetwork {
671
1111
  declare class TrxTestnet extends Testnet implements TronNetwork {
672
1112
  name: string;
673
1113
  family: CoinFamily;
1114
+ accountExplorerUrl: string;
674
1115
  explorerUrl: string;
675
1116
  maxFeeLimit: string;
676
1117
  contractCallFeeLimit: string;
@@ -689,11 +1130,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
689
1130
  name: string;
690
1131
  family: CoinFamily;
691
1132
  explorerUrl: string;
1133
+ accountExplorerUrl: string;
692
1134
  }
693
1135
  declare class XtzTestnet extends Testnet implements AccountNetwork {
694
1136
  name: string;
695
1137
  family: CoinFamily;
696
1138
  explorerUrl: string;
1139
+ accountExplorerUrl: string;
697
1140
  }
698
1141
  declare class ZCash extends Mainnet implements UtxoNetwork {
699
1142
  name: string;
@@ -732,6 +1175,10 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
732
1175
  walletFactoryAddress: string;
733
1176
  walletImplementationAddress: string;
734
1177
  batcherContractAddress: string;
1178
+ nativeCoinOperationHashPrefix: string;
1179
+ tokenOperationHashPrefix: string;
1180
+ walletV4ForwarderFactoryAddress: string;
1181
+ walletV4ForwarderImplementationAddress: string;
735
1182
  }
736
1183
  declare class PolygonTestnet extends Testnet implements EthereumNetwork {
737
1184
  name: string;
@@ -744,6 +1191,10 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
744
1191
  walletFactoryAddress: string;
745
1192
  walletImplementationAddress: string;
746
1193
  batcherContractAddress: string;
1194
+ nativeCoinOperationHashPrefix: string;
1195
+ tokenOperationHashPrefix: string;
1196
+ walletV4ForwarderFactoryAddress: string;
1197
+ walletV4ForwarderImplementationAddress: string;
747
1198
  }
748
1199
  declare class Optimism extends Mainnet implements EthereumNetwork {
749
1200
  name: string;
@@ -751,6 +1202,15 @@ declare class Optimism extends Mainnet implements EthereumNetwork {
751
1202
  explorerUrl: string;
752
1203
  accountExplorerUrl: string;
753
1204
  chainId: number;
1205
+ nativeCoinOperationHashPrefix: string;
1206
+ tokenOperationHashPrefix: string;
1207
+ forwarderFactoryAddress: string;
1208
+ forwarderImplementationAddress: string;
1209
+ walletFactoryAddress: string;
1210
+ walletImplementationAddress: string;
1211
+ walletV4ForwarderFactoryAddress: string;
1212
+ walletV4ForwarderImplementationAddress: string;
1213
+ batcherContractAddress: string;
754
1214
  }
755
1215
  declare class OptimismTestnet extends Testnet implements EthereumNetwork {
756
1216
  name: string;
@@ -758,28 +1218,1136 @@ declare class OptimismTestnet extends Testnet implements EthereumNetwork {
758
1218
  explorerUrl: string;
759
1219
  accountExplorerUrl: string;
760
1220
  chainId: number;
1221
+ nativeCoinOperationHashPrefix: string;
1222
+ tokenOperationHashPrefix: string;
1223
+ forwarderFactoryAddress: string;
1224
+ forwarderImplementationAddress: string;
1225
+ walletFactoryAddress: string;
1226
+ walletImplementationAddress: string;
1227
+ walletV4ForwarderFactoryAddress: string;
1228
+ walletV4ForwarderImplementationAddress: string;
1229
+ batcherContractAddress: string;
761
1230
  }
762
- export declare const Networks: {
763
- main: {
764
- ada: Readonly<Ada>;
765
- algorand: Readonly<Algorand>;
766
- arbitrum: Readonly<Arbitrum>;
767
- atom: Readonly<Atom>;
768
- avalancheC: Readonly<AvalancheC>;
769
- avalancheP: Readonly<AvalancheP>;
770
- bitcoin: Readonly<Bitcoin>;
771
- bitcoinCash: Readonly<BitcoinCash>;
772
- bitcoinGold: Readonly<BitcoinGold>;
773
- bitcoinSV: Readonly<BitcoinSV>;
774
- bera: Readonly<Bera>;
775
- bld: Readonly<Bld>;
776
- bsc: Readonly<BinanceSmartChain>;
777
- casper: Readonly<Casper>;
778
- celo: Readonly<Celo>;
779
- coreum: Readonly<Coreum>;
780
- dash: Readonly<Dash>;
1231
+ declare class ZkSync extends Mainnet implements EthereumNetwork {
1232
+ name: string;
1233
+ family: CoinFamily;
1234
+ explorerUrl: string;
1235
+ accountExplorerUrl: string;
1236
+ chainId: number;
1237
+ nativeCoinOperationHashPrefix: string;
1238
+ tokenOperationHashPrefix: string;
1239
+ }
1240
+ declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
1241
+ name: string;
1242
+ family: CoinFamily;
1243
+ explorerUrl: string;
1244
+ accountExplorerUrl: string;
1245
+ chainId: number;
1246
+ nativeCoinOperationHashPrefix: string;
1247
+ tokenOperationHashPrefix: string;
1248
+ forwarderFactoryAddress: string;
1249
+ forwarderImplementationAddress: string;
1250
+ walletV4ForwarderFactoryAddress: string;
1251
+ walletV4ForwarderImplementationAddress: string;
1252
+ walletFactoryAddress: string;
1253
+ walletImplementationAddress: string;
1254
+ }
1255
+ declare class ZkSyncEra extends Mainnet implements EthereumNetwork {
1256
+ name: string;
1257
+ family: CoinFamily;
1258
+ explorerUrl: string;
1259
+ accountExplorerUrl: string;
1260
+ chainId: number;
1261
+ nativeCoinOperationHashPrefix: string;
1262
+ tokenOperationHashPrefix: string;
1263
+ }
1264
+ declare class ZkSyncEraTestnet extends Testnet implements EthereumNetwork {
1265
+ name: string;
1266
+ family: CoinFamily;
1267
+ explorerUrl: string;
1268
+ accountExplorerUrl: string;
1269
+ chainId: number;
1270
+ nativeCoinOperationHashPrefix: string;
1271
+ tokenOperationHashPrefix: string;
1272
+ forwarderFactoryAddress: string;
1273
+ forwarderImplementationAddress: string;
1274
+ walletV4ForwarderFactoryAddress: string;
1275
+ walletV4ForwarderImplementationAddress: string;
1276
+ walletFactoryAddress: string;
1277
+ walletImplementationAddress: string;
1278
+ }
1279
+ declare class Berachain extends Mainnet implements EthereumNetwork {
1280
+ name: string;
1281
+ family: CoinFamily;
1282
+ explorerUrl: string;
1283
+ accountExplorerUrl: string;
1284
+ chainId: number;
1285
+ nativeCoinOperationHashPrefix: string;
1286
+ tokenOperationHashPrefix: string;
1287
+ batcherContractAddress: string;
1288
+ forwarderFactoryAddress: string;
1289
+ forwarderImplementationAddress: string;
1290
+ }
1291
+ declare class BerachainTestnet extends Testnet implements EthereumNetwork {
1292
+ name: string;
1293
+ family: CoinFamily;
1294
+ explorerUrl: string;
1295
+ accountExplorerUrl: string;
1296
+ chainId: number;
1297
+ nativeCoinOperationHashPrefix: string;
1298
+ tokenOperationHashPrefix: string;
1299
+ batcherContractAddress: string;
1300
+ forwarderFactoryAddress: string;
1301
+ forwarderImplementationAddress: string;
1302
+ }
1303
+ declare class Oas extends Mainnet implements EthereumNetwork {
1304
+ name: string;
1305
+ family: CoinFamily;
1306
+ explorerUrl: string;
1307
+ accountExplorerUrl: string;
1308
+ chainId: number;
1309
+ nativeCoinOperationHashPrefix: string;
1310
+ batcherContractAddress: string;
1311
+ forwarderFactoryAddress: string;
1312
+ forwarderImplementationAddress: string;
1313
+ }
1314
+ declare class OasTestnet extends Testnet implements EthereumNetwork {
1315
+ name: string;
1316
+ family: CoinFamily;
1317
+ explorerUrl: string;
1318
+ accountExplorerUrl: string;
1319
+ chainId: number;
1320
+ nativeCoinOperationHashPrefix: string;
1321
+ batcherContractAddress: string;
1322
+ forwarderFactoryAddress: string;
1323
+ forwarderImplementationAddress: string;
1324
+ }
1325
+ declare class Coredao extends Mainnet implements EthereumNetwork {
1326
+ name: string;
1327
+ family: CoinFamily;
1328
+ explorerUrl: string;
1329
+ accountExplorerUrl: string;
1330
+ chainId: number;
1331
+ nativeCoinOperationHashPrefix: string;
1332
+ batcherContractAddress: string;
1333
+ forwarderFactoryAddress: string;
1334
+ forwarderImplementationAddress: string;
1335
+ }
1336
+ declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
1337
+ name: string;
1338
+ family: CoinFamily;
1339
+ explorerUrl: string;
1340
+ accountExplorerUrl: string;
1341
+ chainId: number;
1342
+ nativeCoinOperationHashPrefix: string;
1343
+ batcherContractAddress: string;
1344
+ forwarderFactoryAddress: string;
1345
+ forwarderImplementationAddress: string;
1346
+ }
1347
+ declare class IP extends Mainnet implements EthereumNetwork {
1348
+ name: string;
1349
+ family: CoinFamily;
1350
+ explorerUrl: string;
1351
+ accountExplorerUrl: string;
1352
+ chainId: number;
1353
+ nativeCoinOperationHashPrefix: string;
1354
+ }
1355
+ declare class IPTestnet extends Testnet implements EthereumNetwork {
1356
+ name: string;
1357
+ family: CoinFamily;
1358
+ explorerUrl: string;
1359
+ accountExplorerUrl: string;
1360
+ chainId: number;
1361
+ nativeCoinOperationHashPrefix: string;
1362
+ }
1363
+ declare class ApeChain extends Mainnet implements EthereumNetwork {
1364
+ name: string;
1365
+ family: CoinFamily;
1366
+ explorerUrl: string;
1367
+ accountExplorerUrl: string;
1368
+ chainId: number;
1369
+ nativeCoinOperationHashPrefix: string;
1370
+ }
1371
+ declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
1372
+ name: string;
1373
+ family: CoinFamily;
1374
+ explorerUrl: string;
1375
+ accountExplorerUrl: string;
1376
+ chainId: number;
1377
+ nativeCoinOperationHashPrefix: string;
1378
+ forwarderFactoryAddress: string;
1379
+ forwarderImplementationAddress: string;
1380
+ walletFactoryAddress: string;
1381
+ walletImplementationAddress: string;
1382
+ batcherContractAddress: string;
1383
+ }
1384
+ declare class Pharos extends Mainnet implements EthereumNetwork {
1385
+ name: string;
1386
+ family: CoinFamily;
1387
+ explorerUrl: string;
1388
+ accountExplorerUrl: string;
1389
+ chainId: number;
1390
+ nativeCoinOperationHashPrefix: string;
1391
+ }
1392
+ declare class PharosTestnet extends Testnet implements EthereumNetwork {
1393
+ name: string;
1394
+ family: CoinFamily;
1395
+ explorerUrl: string;
1396
+ accountExplorerUrl: string;
1397
+ chainId: number;
1398
+ nativeCoinOperationHashPrefix: string;
1399
+ forwarderFactoryAddress: string;
1400
+ forwarderImplementationAddress: string;
1401
+ walletFactoryAddress: string;
1402
+ walletImplementationAddress: string;
1403
+ batcherContractAddress: string;
1404
+ }
1405
+ declare class Creditcoin extends Mainnet implements EthereumNetwork {
1406
+ name: string;
1407
+ family: CoinFamily;
1408
+ explorerUrl: string;
1409
+ accountExplorerUrl: string;
1410
+ chainId: number;
1411
+ nativeCoinOperationHashPrefix: string;
1412
+ forwarderFactoryAddress: string;
1413
+ forwarderImplementationAddress: string;
1414
+ walletFactoryAddress: string;
1415
+ walletImplementationAddress: string;
1416
+ batcherContractAddress: string;
1417
+ }
1418
+ declare class Plasma extends Mainnet implements EthereumNetwork {
1419
+ name: string;
1420
+ family: CoinFamily;
1421
+ explorerUrl: string;
1422
+ accountExplorerUrl: string;
1423
+ chainId: number;
1424
+ nativeCoinOperationHashPrefix: string;
1425
+ }
1426
+ declare class PlasmaTestnet extends Testnet implements EthereumNetwork {
1427
+ name: string;
1428
+ family: CoinFamily;
1429
+ explorerUrl: string;
1430
+ accountExplorerUrl: string;
1431
+ chainId: number;
1432
+ nativeCoinOperationHashPrefix: string;
1433
+ }
1434
+ declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
1435
+ name: string;
1436
+ family: CoinFamily;
1437
+ explorerUrl: string;
1438
+ accountExplorerUrl: string;
1439
+ chainId: number;
1440
+ nativeCoinOperationHashPrefix: string;
1441
+ forwarderFactoryAddress: string;
1442
+ forwarderImplementationAddress: string;
1443
+ walletFactoryAddress: string;
1444
+ walletImplementationAddress: string;
1445
+ batcherContractAddress: string;
1446
+ }
1447
+ declare class HypeEVM extends Mainnet implements EthereumNetwork {
1448
+ name: string;
1449
+ family: CoinFamily;
1450
+ explorerUrl: string;
1451
+ accountExplorerUrl: string;
1452
+ chainId: number;
1453
+ nativeCoinOperationHashPrefix: string;
1454
+ forwarderFactoryAddress: string;
1455
+ forwarderImplementationAddress: string;
1456
+ walletFactoryAddress: string;
1457
+ walletImplementationAddress: string;
1458
+ batcherContractAddress: string;
1459
+ }
1460
+ declare class KavaEVMTestnet extends Testnet implements EthereumNetwork {
1461
+ name: string;
1462
+ family: CoinFamily;
1463
+ explorerUrl: string;
1464
+ accountExplorerUrl: string;
1465
+ chainId: number;
1466
+ nativeCoinOperationHashPrefix: string;
1467
+ }
1468
+ declare class KavaEVM extends Mainnet implements EthereumNetwork {
1469
+ name: string;
1470
+ family: CoinFamily;
1471
+ explorerUrl: string;
1472
+ accountExplorerUrl: string;
1473
+ chainId: number;
1474
+ nativeCoinOperationHashPrefix: string;
1475
+ }
1476
+ declare class LineaETH extends Mainnet implements EthereumNetwork {
1477
+ name: string;
1478
+ family: CoinFamily;
1479
+ explorerUrl: string;
1480
+ accountExplorerUrl: string;
1481
+ chainId: number;
1482
+ nativeCoinOperationHashPrefix: string;
1483
+ }
1484
+ declare class LineaETHTestnet extends Testnet implements EthereumNetwork {
1485
+ name: string;
1486
+ family: CoinFamily;
1487
+ explorerUrl: string;
1488
+ accountExplorerUrl: string;
1489
+ chainId: number;
1490
+ nativeCoinOperationHashPrefix: string;
1491
+ }
1492
+ declare class FluentETH extends Mainnet implements EthereumNetwork {
1493
+ name: string;
1494
+ family: CoinFamily;
1495
+ explorerUrl: string;
1496
+ accountExplorerUrl: string;
1497
+ chainId: number;
1498
+ nativeCoinOperationHashPrefix: string;
1499
+ }
1500
+ declare class FluentETHTestnet extends Testnet implements EthereumNetwork {
1501
+ name: string;
1502
+ family: CoinFamily;
1503
+ explorerUrl: string;
1504
+ accountExplorerUrl: string;
1505
+ chainId: number;
1506
+ nativeCoinOperationHashPrefix: string;
1507
+ }
1508
+ declare class Mantle extends Mainnet implements EthereumNetwork {
1509
+ name: string;
1510
+ family: CoinFamily;
1511
+ explorerUrl: string;
1512
+ accountExplorerUrl: string;
1513
+ chainId: number;
1514
+ nativeCoinOperationHashPrefix: string;
1515
+ }
1516
+ declare class MantleTestnet extends Testnet implements EthereumNetwork {
1517
+ name: string;
1518
+ family: CoinFamily;
1519
+ explorerUrl: string;
1520
+ accountExplorerUrl: string;
1521
+ chainId: number;
1522
+ nativeCoinOperationHashPrefix: string;
1523
+ }
1524
+ declare class JovayETH extends Mainnet implements EthereumNetwork {
1525
+ name: string;
1526
+ family: CoinFamily;
1527
+ explorerUrl: string;
1528
+ accountExplorerUrl: string;
1529
+ chainId: number;
1530
+ nativeCoinOperationHashPrefix: string;
1531
+ }
1532
+ declare class JovayETHTestnet extends Testnet implements EthereumNetwork {
1533
+ name: string;
1534
+ family: CoinFamily;
1535
+ explorerUrl: string;
1536
+ accountExplorerUrl: string;
1537
+ chainId: number;
1538
+ nativeCoinOperationHashPrefix: string;
1539
+ }
1540
+ declare class Unieth extends Mainnet implements EthereumNetwork {
1541
+ name: string;
1542
+ family: CoinFamily;
1543
+ explorerUrl: string;
1544
+ accountExplorerUrl: string;
1545
+ chainId: number;
1546
+ nativeCoinOperationHashPrefix: string;
1547
+ }
1548
+ declare class UniethTestnet extends Testnet implements EthereumNetwork {
1549
+ name: string;
1550
+ family: CoinFamily;
1551
+ explorerUrl: string;
1552
+ accountExplorerUrl: string;
1553
+ chainId: number;
1554
+ nativeCoinOperationHashPrefix: string;
1555
+ }
1556
+ declare class Hppeth extends Mainnet implements EthereumNetwork {
1557
+ name: string;
1558
+ family: CoinFamily;
1559
+ explorerUrl: string;
1560
+ accountExplorerUrl: string;
1561
+ chainId: number;
1562
+ nativeCoinOperationHashPrefix: string;
1563
+ }
1564
+ declare class HppethTestnet extends Testnet implements EthereumNetwork {
1565
+ name: string;
1566
+ family: CoinFamily;
1567
+ explorerUrl: string;
1568
+ accountExplorerUrl: string;
1569
+ chainId: number;
1570
+ nativeCoinOperationHashPrefix: string;
1571
+ }
1572
+ declare class HoodethTestnet extends Testnet implements EthereumNetwork {
1573
+ name: string;
1574
+ family: CoinFamily;
1575
+ explorerUrl: string;
1576
+ accountExplorerUrl: string;
1577
+ chainId: number;
1578
+ nativeCoinOperationHashPrefix: string;
1579
+ }
1580
+ declare class Hoodeth extends Mainnet implements EthereumNetwork {
1581
+ name: string;
1582
+ family: CoinFamily;
1583
+ explorerUrl: string;
1584
+ accountExplorerUrl: string;
1585
+ chainId: number;
1586
+ nativeCoinOperationHashPrefix: string;
1587
+ }
1588
+ declare class HumanityProtocol extends Mainnet implements EthereumNetwork {
1589
+ name: string;
1590
+ family: CoinFamily;
1591
+ explorerUrl: string;
1592
+ accountExplorerUrl: string;
1593
+ chainId: number;
1594
+ nativeCoinOperationHashPrefix: string;
1595
+ }
1596
+ declare class HumanityProtocolTestnet extends Testnet implements EthereumNetwork {
1597
+ name: string;
1598
+ family: CoinFamily;
1599
+ explorerUrl: string;
1600
+ accountExplorerUrl: string;
1601
+ chainId: number;
1602
+ nativeCoinOperationHashPrefix: string;
1603
+ }
1604
+ declare class Xlayer extends Mainnet implements EthereumNetwork {
1605
+ name: string;
1606
+ family: CoinFamily;
1607
+ explorerUrl: string;
1608
+ accountExplorerUrl: string;
1609
+ chainId: number;
1610
+ nativeCoinOperationHashPrefix: string;
1611
+ }
1612
+ declare class XlayerTestnet extends Testnet implements EthereumNetwork {
1613
+ name: string;
1614
+ family: CoinFamily;
1615
+ explorerUrl: string;
1616
+ accountExplorerUrl: string;
1617
+ chainId: number;
1618
+ nativeCoinOperationHashPrefix: string;
1619
+ }
1620
+ declare class Morph extends Mainnet implements EthereumNetwork {
1621
+ name: string;
1622
+ family: CoinFamily;
1623
+ explorerUrl: string;
1624
+ accountExplorerUrl: string;
1625
+ chainId: number;
1626
+ nativeCoinOperationHashPrefix: string;
1627
+ }
1628
+ declare class MorphTestnet extends Testnet implements EthereumNetwork {
1629
+ name: string;
1630
+ family: CoinFamily;
1631
+ explorerUrl: string;
1632
+ accountExplorerUrl: string;
1633
+ chainId: number;
1634
+ nativeCoinOperationHashPrefix: string;
1635
+ }
1636
+ declare class MorphETH extends Mainnet implements EthereumNetwork {
1637
+ name: string;
1638
+ family: CoinFamily;
1639
+ explorerUrl: string;
1640
+ accountExplorerUrl: string;
1641
+ chainId: number;
1642
+ nativeCoinOperationHashPrefix: string;
1643
+ }
1644
+ declare class MorphETHTestnet extends Testnet implements EthereumNetwork {
1645
+ name: string;
1646
+ family: CoinFamily;
1647
+ explorerUrl: string;
1648
+ accountExplorerUrl: string;
1649
+ chainId: number;
1650
+ nativeCoinOperationHashPrefix: string;
1651
+ }
1652
+ declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
1653
+ name: string;
1654
+ family: CoinFamily;
1655
+ explorerUrl: string;
1656
+ accountExplorerUrl: string;
1657
+ chainId: number;
1658
+ nativeCoinOperationHashPrefix: string;
1659
+ forwarderFactoryAddress: string;
1660
+ forwarderImplementationAddress: string;
1661
+ walletFactoryAddress: string;
1662
+ walletImplementationAddress: string;
1663
+ batcherContractAddress: string;
1664
+ }
1665
+ declare class Sonic extends Mainnet implements EthereumNetwork {
1666
+ name: string;
1667
+ family: CoinFamily;
1668
+ explorerUrl: string;
1669
+ accountExplorerUrl: string;
1670
+ chainId: number;
1671
+ nativeCoinOperationHashPrefix: string;
1672
+ }
1673
+ declare class SonicTestnet extends Testnet implements EthereumNetwork {
1674
+ name: string;
1675
+ family: CoinFamily;
1676
+ explorerUrl: string;
1677
+ accountExplorerUrl: string;
1678
+ chainId: number;
1679
+ nativeCoinOperationHashPrefix: string;
1680
+ walletFactoryAddress: string;
1681
+ batcherContractAddress: string;
1682
+ forwarderFactoryAddress: string;
1683
+ forwarderImplementationAddress: string;
1684
+ walletImplementationAddress: string;
1685
+ }
1686
+ declare class Usdt0 extends Mainnet implements EthereumNetwork {
1687
+ name: string;
1688
+ family: CoinFamily;
1689
+ explorerUrl: string;
1690
+ accountExplorerUrl: string;
1691
+ chainId: number;
1692
+ nativeCoinOperationHashPrefix: string;
1693
+ }
1694
+ declare class Usdt0Testnet extends Testnet implements EthereumNetwork {
1695
+ name: string;
1696
+ family: CoinFamily;
1697
+ explorerUrl: string;
1698
+ accountExplorerUrl: string;
1699
+ chainId: number;
1700
+ nativeCoinOperationHashPrefix: string;
1701
+ }
1702
+ declare class Kaia extends Mainnet implements EthereumNetwork {
1703
+ name: string;
1704
+ family: CoinFamily;
1705
+ explorerUrl: string;
1706
+ accountExplorerUrl: string;
1707
+ chainId: number;
1708
+ nativeCoinOperationHashPrefix: string;
1709
+ }
1710
+ declare class KaiaTestnet extends Testnet implements EthereumNetwork {
1711
+ name: string;
1712
+ family: CoinFamily;
1713
+ explorerUrl: string;
1714
+ accountExplorerUrl: string;
1715
+ chainId: number;
1716
+ nativeCoinOperationHashPrefix: string;
1717
+ walletFactoryAddress: string;
1718
+ batcherContractAddress: string;
1719
+ forwarderFactoryAddress: string;
1720
+ forwarderImplementationAddress: string;
1721
+ walletImplementationAddress: string;
1722
+ }
1723
+ declare class Irys extends Mainnet implements EthereumNetwork {
1724
+ name: string;
1725
+ family: CoinFamily;
1726
+ explorerUrl: string;
1727
+ accountExplorerUrl: string;
1728
+ chainId: number;
1729
+ nativeCoinOperationHashPrefix: string;
1730
+ }
1731
+ declare class IrysTestnet extends Testnet implements EthereumNetwork {
1732
+ name: string;
1733
+ family: CoinFamily;
1734
+ explorerUrl: string;
1735
+ accountExplorerUrl: string;
1736
+ chainId: number;
1737
+ nativeCoinOperationHashPrefix: string;
1738
+ walletFactoryAddress: string;
1739
+ batcherContractAddress: string;
1740
+ forwarderFactoryAddress: string;
1741
+ forwarderImplementationAddress: string;
1742
+ walletImplementationAddress: string;
1743
+ }
1744
+ declare class Og extends Mainnet implements EthereumNetwork {
1745
+ name: string;
1746
+ family: CoinFamily;
1747
+ explorerUrl: string;
1748
+ accountExplorerUrl: string;
1749
+ chainId: number;
1750
+ nativeCoinOperationHashPrefix: string;
1751
+ }
1752
+ declare class OgTestnet extends Testnet implements EthereumNetwork {
1753
+ name: string;
1754
+ family: CoinFamily;
1755
+ explorerUrl: string;
1756
+ accountExplorerUrl: string;
1757
+ chainId: number;
1758
+ nativeCoinOperationHashPrefix: string;
1759
+ }
1760
+ declare class Xdc extends Mainnet implements EthereumNetwork {
1761
+ name: string;
1762
+ family: CoinFamily;
1763
+ explorerUrl: string;
1764
+ accountExplorerUrl: string;
1765
+ chainId: number;
1766
+ nativeCoinOperationHashPrefix: string;
1767
+ batcherContractAddress: string;
1768
+ forwarderFactoryAddress: string;
1769
+ forwarderImplementationAddress: string;
1770
+ }
1771
+ declare class XdcTestnet extends Testnet implements EthereumNetwork {
1772
+ name: string;
1773
+ family: CoinFamily;
1774
+ explorerUrl: string;
1775
+ accountExplorerUrl: string;
1776
+ chainId: number;
1777
+ nativeCoinOperationHashPrefix: string;
1778
+ batcherContractAddress: string;
1779
+ forwarderFactoryAddress: string;
1780
+ forwarderImplementationAddress: string;
1781
+ }
1782
+ declare class Wemix extends Mainnet implements EthereumNetwork {
1783
+ name: string;
1784
+ family: CoinFamily;
1785
+ explorerUrl: string;
1786
+ accountExplorerUrl: string;
1787
+ chainId: number;
1788
+ nativeCoinOperationHashPrefix: string;
1789
+ batcherContractAddress: string;
1790
+ forwarderFactoryAddress: string;
1791
+ forwarderImplementationAddress: string;
1792
+ }
1793
+ declare class WemixTestnet extends Testnet implements EthereumNetwork {
1794
+ name: string;
1795
+ family: CoinFamily;
1796
+ explorerUrl: string;
1797
+ accountExplorerUrl: string;
1798
+ chainId: number;
1799
+ nativeCoinOperationHashPrefix: string;
1800
+ batcherContractAddress: string;
1801
+ forwarderFactoryAddress: string;
1802
+ forwarderImplementationAddress: string;
1803
+ }
1804
+ declare class MonadTestnet extends Testnet implements EthereumNetwork {
1805
+ name: string;
1806
+ family: CoinFamily;
1807
+ explorerUrl: string;
1808
+ accountExplorerUrl: string;
1809
+ chainId: number;
1810
+ nativeCoinOperationHashPrefix: string;
1811
+ walletFactoryAddress: string;
1812
+ batcherContractAddress: string;
1813
+ forwarderFactoryAddress: string;
1814
+ forwarderImplementationAddress: string;
1815
+ walletImplementationAddress: string;
1816
+ }
1817
+ declare class Monad extends Mainnet implements EthereumNetwork {
1818
+ name: string;
1819
+ family: CoinFamily;
1820
+ explorerUrl: string;
1821
+ chainId: number;
1822
+ nativeCoinOperationHashPrefix: string;
1823
+ walletImplementationAddress: string;
1824
+ batcherContractAddress: string;
1825
+ forwarderFactoryAddress: string;
1826
+ forwarderImplementationAddress: string;
1827
+ }
1828
+ declare class World extends Mainnet implements EthereumNetwork {
1829
+ name: string;
1830
+ family: CoinFamily;
1831
+ explorerUrl: string;
1832
+ accountExplorerUrl: string;
1833
+ chainId: number;
1834
+ nativeCoinOperationHashPrefix: string;
1835
+ walletImplementationAddress: string;
1836
+ batcherContractAddress: string;
1837
+ forwarderFactoryAddress: string;
1838
+ forwarderImplementationAddress: string;
1839
+ }
1840
+ declare class WorldTestnet extends Testnet implements EthereumNetwork {
1841
+ name: string;
1842
+ family: CoinFamily;
1843
+ explorerUrl: string;
1844
+ accountExplorerUrl: string;
1845
+ chainId: number;
1846
+ nativeCoinOperationHashPrefix: string;
1847
+ batcherContractAddress: string;
1848
+ forwarderFactoryAddress: string;
1849
+ forwarderImplementationAddress: string;
1850
+ walletImplementationAddress: string;
1851
+ }
1852
+ declare class Soneium extends Mainnet implements EthereumNetwork {
1853
+ name: string;
1854
+ family: CoinFamily;
1855
+ explorerUrl: string;
1856
+ accountExplorerUrl: string;
1857
+ chainId: number;
1858
+ nativeCoinOperationHashPrefix: string;
1859
+ walletImplementationAddress: string;
1860
+ walletFactoryAddress: string;
1861
+ batcherContractAddress: string;
1862
+ forwarderFactoryAddress: string;
1863
+ forwarderImplementationAddress: string;
1864
+ }
1865
+ declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
1866
+ name: string;
1867
+ family: CoinFamily;
1868
+ explorerUrl: string;
1869
+ accountExplorerUrl: string;
1870
+ chainId: number;
1871
+ nativeCoinOperationHashPrefix: string;
1872
+ walletFactoryAddress: string;
1873
+ batcherContractAddress: string;
1874
+ forwarderFactoryAddress: string;
1875
+ forwarderImplementationAddress: string;
1876
+ walletImplementationAddress: string;
1877
+ }
1878
+ declare class SeiEvm extends Mainnet implements EthereumNetwork {
1879
+ name: string;
1880
+ family: CoinFamily;
1881
+ explorerUrl: string;
1882
+ accountExplorerUrl: string;
1883
+ chainId: number;
1884
+ nativeCoinOperationHashPrefix: string;
1885
+ }
1886
+ declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
1887
+ name: string;
1888
+ family: CoinFamily;
1889
+ explorerUrl: string;
1890
+ accountExplorerUrl: string;
1891
+ chainId: number;
1892
+ nativeCoinOperationHashPrefix: string;
1893
+ walletFactoryAddress: string;
1894
+ batcherContractAddress: string;
1895
+ forwarderFactoryAddress: string;
1896
+ forwarderImplementationAddress: string;
1897
+ walletImplementationAddress: string;
1898
+ }
1899
+ declare class SomniaTestnet extends Testnet implements EthereumNetwork {
1900
+ name: string;
1901
+ family: CoinFamily;
1902
+ explorerUrl: string;
1903
+ accountExplorerUrl: string;
1904
+ chainId: number;
1905
+ nativeCoinOperationHashPrefix: string;
1906
+ walletFactoryAddress: string;
1907
+ batcherContractAddress: string;
1908
+ forwarderFactoryAddress: string;
1909
+ forwarderImplementationAddress: string;
1910
+ walletImplementationAddress: string;
1911
+ }
1912
+ declare class Somi extends Mainnet implements EthereumNetwork {
1913
+ name: string;
1914
+ family: CoinFamily;
1915
+ explorerUrl: string;
1916
+ chainId: number;
1917
+ nativeCoinOperationHashPrefix: string;
1918
+ walletImplementationAddress: string;
1919
+ walletFactoryAddress: string;
1920
+ forwarderImplementationAddress: string;
1921
+ forwarderFactoryAddress: string;
1922
+ batcherContractAddress: string;
1923
+ }
1924
+ export declare class FlareP extends Mainnet implements FlareNetwork {
1925
+ assetId: string;
1926
+ name: string;
1927
+ family: CoinFamily;
1928
+ explorerUrl: string;
1929
+ accountExplorerUrl: string;
1930
+ blockchainID: string;
1931
+ cChainBlockchainID: string;
1932
+ xChainBlockchainID: string;
1933
+ networkID: number;
1934
+ hrp: string;
1935
+ alias: string;
1936
+ vm: string;
1937
+ minImportToPFee: string;
1938
+ txFee: string;
1939
+ baseTxFee: string;
1940
+ maxImportFee: string;
1941
+ createAssetTxFee: string;
1942
+ createSubnetTx: string;
1943
+ transformSubnetTxFee: string;
1944
+ createChainTx: string;
1945
+ creationTxFee: string;
1946
+ minConsumption: string;
1947
+ maxConsumption: string;
1948
+ maxSupply: string;
1949
+ minStake: string;
1950
+ minStakeDuration: string;
1951
+ maxStakeDuration: string;
1952
+ minDelegationStake: string;
1953
+ minDelegationFee: string;
1954
+ addPrimaryNetworkValidatorFee: string;
1955
+ addSubnetValidatorFee: string;
1956
+ addSubnetDelegatorFee: string;
1957
+ }
1958
+ export declare class FlarePTestnet extends Testnet implements FlareNetwork {
1959
+ name: string;
1960
+ family: CoinFamily;
1961
+ explorerUrl: string;
1962
+ accountExplorerUrl: string;
1963
+ flarePublicUrl: string;
1964
+ blockchainID: string;
1965
+ cChainBlockchainID: string;
1966
+ xChainBlockchainID: string;
1967
+ networkID: number;
1968
+ hrp: string;
1969
+ alias: string;
1970
+ assetId: string;
1971
+ vm: string;
1972
+ minImportToPFee: string;
1973
+ txFee: string;
1974
+ baseTxFee: string;
1975
+ maxImportFee: string;
1976
+ createAssetTxFee: string;
1977
+ createSubnetTx: string;
1978
+ transformSubnetTxFee: string;
1979
+ createChainTx: string;
1980
+ creationTxFee: string;
1981
+ minConsumption: string;
1982
+ maxConsumption: string;
1983
+ maxSupply: string;
1984
+ minStake: string;
1985
+ minStakeDuration: string;
1986
+ maxStakeDuration: string;
1987
+ minDelegationStake: string;
1988
+ minDelegationFee: string;
1989
+ addPrimaryNetworkValidatorFee: string;
1990
+ addSubnetValidatorFee: string;
1991
+ addSubnetDelegatorFee: string;
1992
+ }
1993
+ export declare class Flare extends Mainnet implements EthereumNetwork {
1994
+ name: string;
1995
+ family: CoinFamily;
1996
+ explorerUrl: string;
1997
+ accountExplorerUrl: string;
1998
+ flarePublicUrl: string;
1999
+ chainId: number;
2000
+ nativeCoinOperationHashPrefix: string;
2001
+ walletFactoryAddress: string;
2002
+ walletImplementationAddress: string;
2003
+ batcherContractAddress: string;
2004
+ forwarderFactoryAddress: string;
2005
+ forwarderImplementationAddress: string;
2006
+ }
2007
+ export declare class FlareTestnet extends Testnet implements EthereumNetwork {
2008
+ name: string;
2009
+ family: CoinFamily;
2010
+ explorerUrl: string;
2011
+ accountExplorerUrl: string;
2012
+ chainId: number;
2013
+ nativeCoinOperationHashPrefix: string;
2014
+ walletFactoryAddress: string;
2015
+ walletImplementationAddress: string;
2016
+ batcherContractAddress: string;
2017
+ forwarderFactoryAddress: string;
2018
+ forwarderImplementationAddress: string;
2019
+ }
2020
+ declare class Songbird extends Mainnet implements EthereumNetwork {
2021
+ name: string;
2022
+ family: CoinFamily;
2023
+ explorerUrl: string;
2024
+ accountExplorerUrl: string;
2025
+ chainId: number;
2026
+ nativeCoinOperationHashPrefix: string;
2027
+ batcherContractAddress: string;
2028
+ forwarderFactoryAddress: string;
2029
+ forwarderImplementationAddress: string;
2030
+ }
2031
+ declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
2032
+ name: string;
2033
+ family: CoinFamily;
2034
+ explorerUrl: string;
2035
+ accountExplorerUrl: string;
2036
+ chainId: number;
2037
+ nativeCoinOperationHashPrefix: string;
2038
+ batcherContractAddress: string;
2039
+ forwarderFactoryAddress: string;
2040
+ forwarderImplementationAddress: string;
2041
+ }
2042
+ declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
2043
+ name: string;
2044
+ family: CoinFamily;
2045
+ explorerUrl: string;
2046
+ accountExplorerUrl: string;
2047
+ chainId: number;
2048
+ nativeCoinOperationHashPrefix: string;
2049
+ tokenOperationHashPrefix: string;
2050
+ forwarderFactoryAddress: string;
2051
+ forwarderImplementationAddress: string;
2052
+ walletFactoryAddress: string;
2053
+ walletImplementationAddress: string;
2054
+ }
2055
+ declare class BaseChain extends Mainnet implements EthereumNetwork {
2056
+ name: string;
2057
+ family: CoinFamily;
2058
+ explorerUrl: string;
2059
+ accountExplorerUrl: string;
2060
+ chainId: number;
2061
+ nativeCoinOperationHashPrefix: string;
2062
+ tokenOperationHashPrefix: string;
2063
+ forwarderFactoryAddress: string;
2064
+ forwarderImplementationAddress: string;
2065
+ walletFactoryAddress: string;
2066
+ walletImplementationAddress: string;
2067
+ }
2068
+ declare class Polymesh extends Mainnet implements AccountNetwork {
2069
+ name: string;
2070
+ family: CoinFamily;
2071
+ explorerUrl: string;
2072
+ specName: string;
2073
+ genesisHash: string;
2074
+ specVersion: number;
2075
+ chainName: string;
2076
+ txVersion: number;
2077
+ }
2078
+ declare class PolymeshTestnet extends Testnet implements AccountNetwork {
2079
+ name: string;
2080
+ family: CoinFamily;
2081
+ explorerUrl: string;
2082
+ specName: SubstrateSpecNameType;
2083
+ genesisHash: string;
2084
+ specVersion: number;
2085
+ chainName: string;
2086
+ txVersion: number;
2087
+ }
2088
+ declare class Vet extends Mainnet implements EthereumNetwork {
2089
+ name: string;
2090
+ family: CoinFamily;
2091
+ explorerUrl: string;
2092
+ accountExplorerUrl: string;
2093
+ chainId: number;
2094
+ forwarderFactoryAddress: string;
2095
+ forwarderImplementationAddress: string;
2096
+ }
2097
+ declare class VetTestnet extends Testnet implements EthereumNetwork {
2098
+ name: string;
2099
+ family: CoinFamily;
2100
+ explorerUrl: string;
2101
+ accountExplorerUrl: string;
2102
+ chainId: number;
2103
+ forwarderFactoryAddress: string;
2104
+ forwarderImplementationAddress: string;
2105
+ }
2106
+ declare class Iota extends Mainnet implements AccountNetwork {
2107
+ name: string;
2108
+ family: CoinFamily;
2109
+ explorerUrl: string;
2110
+ accountExplorerUrl: string;
2111
+ }
2112
+ declare class IotaTestnet extends Testnet implements AccountNetwork {
2113
+ name: string;
2114
+ family: CoinFamily;
2115
+ explorerUrl: string;
2116
+ accountExplorerUrl: string;
2117
+ }
2118
+ declare class Flow extends Mainnet implements EthereumNetwork {
2119
+ name: string;
2120
+ family: CoinFamily;
2121
+ explorerUrl: string;
2122
+ accountExplorerUrl: string;
2123
+ chainId: number;
2124
+ nativeCoinOperationHashPrefix: string;
2125
+ }
2126
+ declare class FlowTestnet extends Testnet implements EthereumNetwork {
2127
+ name: string;
2128
+ family: CoinFamily;
2129
+ explorerUrl: string;
2130
+ accountExplorerUrl: string;
2131
+ chainId: number;
2132
+ nativeCoinOperationHashPrefix: string;
2133
+ }
2134
+ declare class MegaETH extends Mainnet implements EthereumNetwork {
2135
+ name: string;
2136
+ family: CoinFamily;
2137
+ explorerUrl: string;
2138
+ accountExplorerUrl: string;
2139
+ chainId: number;
2140
+ nativeCoinOperationHashPrefix: string;
2141
+ }
2142
+ declare class MegaETHTestnet extends Testnet implements EthereumNetwork {
2143
+ name: string;
2144
+ family: CoinFamily;
2145
+ explorerUrl: string;
2146
+ accountExplorerUrl: string;
2147
+ chainId: number;
2148
+ nativeCoinOperationHashPrefix: string;
2149
+ }
2150
+ declare class Plume extends Mainnet implements EthereumNetwork {
2151
+ name: string;
2152
+ family: CoinFamily;
2153
+ explorerUrl: string;
2154
+ accountExplorerUrl: string;
2155
+ chainId: number;
2156
+ nativeCoinOperationHashPrefix: string;
2157
+ }
2158
+ declare class HederaEVMTestnet extends Testnet implements EthereumNetwork {
2159
+ name: string;
2160
+ family: CoinFamily;
2161
+ explorerUrl: string;
2162
+ accountExplorerUrl: string;
2163
+ chainId: number;
2164
+ nativeCoinOperationHashPrefix: string;
2165
+ }
2166
+ declare class HederaEVM extends Mainnet implements EthereumNetwork {
2167
+ name: string;
2168
+ family: CoinFamily;
2169
+ explorerUrl: string;
2170
+ accountExplorerUrl: string;
2171
+ chainId: number;
2172
+ nativeCoinOperationHashPrefix: string;
2173
+ }
2174
+ declare class HemiEth extends Mainnet implements EthereumNetwork {
2175
+ name: string;
2176
+ family: CoinFamily;
2177
+ explorerUrl: string;
2178
+ accountExplorerUrl: string;
2179
+ chainId: number;
2180
+ nativeCoinOperationHashPrefix: string;
2181
+ }
2182
+ declare class HemiEthTestnet extends Testnet implements EthereumNetwork {
2183
+ name: string;
2184
+ family: CoinFamily;
2185
+ explorerUrl: string;
2186
+ accountExplorerUrl: string;
2187
+ chainId: number;
2188
+ nativeCoinOperationHashPrefix: string;
2189
+ }
2190
+ declare class PlumeTestnet extends Testnet implements EthereumNetwork {
2191
+ name: string;
2192
+ family: CoinFamily;
2193
+ explorerUrl: string;
2194
+ accountExplorerUrl: string;
2195
+ chainId: number;
2196
+ nativeCoinOperationHashPrefix: string;
2197
+ }
2198
+ declare class Canton extends Mainnet implements BaseNetwork {
2199
+ name: string;
2200
+ family: CoinFamily;
2201
+ explorerUrl: string;
2202
+ }
2203
+ declare class CantonTestnet extends Testnet implements BaseNetwork {
2204
+ name: string;
2205
+ family: CoinFamily;
2206
+ explorerUrl: string;
2207
+ }
2208
+ declare class Dogeos extends Mainnet implements EthereumNetwork {
2209
+ name: string;
2210
+ family: CoinFamily;
2211
+ explorerUrl: string;
2212
+ accountExplorerUrl: string;
2213
+ chainId: number;
2214
+ nativeCoinOperationHashPrefix: string;
2215
+ }
2216
+ declare class DogeosTestnet extends Testnet implements EthereumNetwork {
2217
+ name: string;
2218
+ family: CoinFamily;
2219
+ explorerUrl: string;
2220
+ accountExplorerUrl: string;
2221
+ chainId: number;
2222
+ nativeCoinOperationHashPrefix: string;
2223
+ }
2224
+ declare class ArcUSDCTestnet extends Testnet implements EthereumNetwork {
2225
+ name: string;
2226
+ family: CoinFamily;
2227
+ explorerUrl: string;
2228
+ accountExplorerUrl: string;
2229
+ chainId: number;
2230
+ nativeCoinOperationHashPrefix: string;
2231
+ }
2232
+ declare class ArcUSDC extends Mainnet implements EthereumNetwork {
2233
+ name: string;
2234
+ family: CoinFamily;
2235
+ explorerUrl: string;
2236
+ accountExplorerUrl: string;
2237
+ chainId: number;
2238
+ nativeCoinOperationHashPrefix: string;
2239
+ }
2240
+ declare class Tempo extends Mainnet implements EthereumNetwork {
2241
+ name: string;
2242
+ family: CoinFamily;
2243
+ explorerUrl: string;
2244
+ accountExplorerUrl: string;
2245
+ chainId: number;
2246
+ nativeCoinOperationHashPrefix: string;
2247
+ tokenOperationHashPrefix: string;
2248
+ }
2249
+ declare class TempoTestnet extends Testnet implements EthereumNetwork {
2250
+ name: string;
2251
+ family: CoinFamily;
2252
+ explorerUrl: string;
2253
+ accountExplorerUrl: string;
2254
+ chainId: number;
2255
+ nativeCoinOperationHashPrefix: string;
2256
+ tokenOperationHashPrefix: string;
2257
+ }
2258
+ /**
2259
+ * Constructor options for {@link DynamicNetwork}.
2260
+ * Accepts string-typed `type` and `family` so AMS JSON can be passed directly.
2261
+ * Fields mirror BaseNetwork + AccountNetwork + EthereumNetwork.
2262
+ */
2263
+ export interface DynamicNetworkOptions {
2264
+ name: string;
2265
+ type: string;
2266
+ family: string;
2267
+ explorerUrl?: string;
2268
+ accountExplorerUrl?: string;
2269
+ blockExplorerUrl?: string;
2270
+ chainId?: number;
2271
+ batcherContractAddress?: string;
2272
+ forwarderFactoryAddress?: string;
2273
+ forwarderImplementationAddress?: string;
2274
+ walletFactoryAddress?: string;
2275
+ walletImplementationAddress?: string;
2276
+ walletV2FactoryAddress?: string;
2277
+ walletV2ImplementationAddress?: string;
2278
+ walletV4FactoryAddress?: string;
2279
+ walletV4ImplementationAddress?: string;
2280
+ walletV2ForwarderFactoryAddress?: string;
2281
+ walletV2ForwarderImplementationAddress?: string;
2282
+ walletV4ForwarderFactoryAddress?: string;
2283
+ walletV4ForwarderImplementationAddress?: string;
2284
+ nativeCoinOperationHashPrefix?: string;
2285
+ tokenOperationHashPrefix?: string;
2286
+ }
2287
+ /**
2288
+ * Concrete network class for AMS-discovered chains not yet registered in local statics.
2289
+ * Accepts string-typed type/family and casts to enums internally (safe since both are string enums).
2290
+ * Currently covers BaseNetwork + AccountNetwork + EthereumNetwork fields.
2291
+ */
2292
+ export declare class DynamicNetwork extends BaseNetwork {
2293
+ readonly name: string;
2294
+ readonly type: NetworkType;
2295
+ readonly family: CoinFamily;
2296
+ readonly explorerUrl: string | undefined;
2297
+ readonly accountExplorerUrl?: string;
2298
+ readonly blockExplorerUrl?: string;
2299
+ readonly chainId?: number;
2300
+ readonly batcherContractAddress?: string;
2301
+ readonly forwarderFactoryAddress?: string;
2302
+ readonly forwarderImplementationAddress?: string;
2303
+ readonly walletFactoryAddress?: string;
2304
+ readonly walletImplementationAddress?: string;
2305
+ readonly walletV2FactoryAddress?: string;
2306
+ readonly walletV2ImplementationAddress?: string;
2307
+ readonly walletV4FactoryAddress?: string;
2308
+ readonly walletV4ImplementationAddress?: string;
2309
+ readonly walletV2ForwarderFactoryAddress?: string;
2310
+ readonly walletV2ForwarderImplementationAddress?: string;
2311
+ readonly walletV4ForwarderFactoryAddress?: string;
2312
+ readonly walletV4ForwarderImplementationAddress?: string;
2313
+ readonly nativeCoinOperationHashPrefix?: string;
2314
+ readonly tokenOperationHashPrefix?: string;
2315
+ constructor(options: DynamicNetworkOptions);
2316
+ }
2317
+ export declare const Networks: {
2318
+ main: {
2319
+ ada: Readonly<Ada>;
2320
+ algorand: Readonly<Algorand>;
2321
+ apechain: Readonly<ApeChain>;
2322
+ apt: Readonly<Apt>;
2323
+ arbitrum: Readonly<Arbitrum>;
2324
+ arcusdc: Readonly<ArcUSDC>;
2325
+ asi: Readonly<Asi>;
2326
+ atom: Readonly<Atom>;
2327
+ avalancheC: Readonly<AvalancheC>;
2328
+ avalancheP: Readonly<AvalancheP>;
2329
+ baby: Readonly<Baby>;
2330
+ basechain: Readonly<BaseChain>;
2331
+ bitcoin: Readonly<Bitcoin>;
2332
+ bitcoinCash: Readonly<BitcoinCash>;
2333
+ bitcoinGold: Readonly<BitcoinGold>;
2334
+ bitcoinSV: Readonly<BitcoinSV>;
2335
+ bera: Readonly<Berachain>;
2336
+ bld: Readonly<Bld>;
2337
+ bsc: Readonly<BinanceSmartChain>;
2338
+ canton: Readonly<Canton>;
2339
+ casper: Readonly<Casper>;
2340
+ celo: Readonly<Celo>;
2341
+ chiliz: Readonly<Chiliz>;
2342
+ codexeth: Readonly<CodexEth>;
2343
+ coredao: Readonly<Coredao>;
2344
+ coreum: Readonly<Coreum>;
2345
+ cronos: Readonly<Cronos>;
2346
+ dash: Readonly<Dash>;
781
2347
  dogecoin: Readonly<Dogecoin>;
782
- dot: Readonly<Polkadot>;
2348
+ dogeos: Readonly<Dogeos>;
2349
+ dot: Readonly<PolkadotAssetHub>;
2350
+ dydx: Readonly<Dydx>;
783
2351
  eCash: Readonly<ECash>;
784
2352
  eos: Readonly<Eos>;
785
2353
  ethereum: Readonly<Ethereum>;
@@ -787,86 +2355,238 @@ export declare const Networks: {
787
2355
  ethereumClassic: Readonly<EthereumClassic>;
788
2356
  ethereumW: Readonly<EthereumW>;
789
2357
  fiat: Readonly<Fiat>;
2358
+ fetchai: Readonly<FetchAi>;
2359
+ flow: Readonly<Flow>;
2360
+ flr: Readonly<Flare>;
2361
+ flrP: Readonly<FlareP>;
2362
+ fluenteth: Readonly<FluentETH>;
2363
+ h: Readonly<HumanityProtocol>;
790
2364
  hash: Readonly<Hash>;
2365
+ hoodeth: Readonly<Hoodeth>;
791
2366
  hedera: Readonly<Hedera>;
2367
+ hederaEVM: Readonly<HederaEVM>;
2368
+ hemieth: Readonly<HemiEth>;
2369
+ hppeth: Readonly<Hppeth>;
2370
+ icp: Readonly<Icp>;
2371
+ ip: Readonly<IP>;
2372
+ initia: Readonly<Initia>;
2373
+ iota: Readonly<Iota>;
792
2374
  injective: Readonly<Injective>;
2375
+ irys: Readonly<Irys>;
793
2376
  islm: Readonly<Islm>;
794
- kava: Readonly<Kava>;
2377
+ jovayeth: Readonly<JovayETH>;
2378
+ kaia: Readonly<Kaia>;
2379
+ kavacosmos: Readonly<KavaCosmos>;
2380
+ kavaevm: Readonly<KavaEVM>;
2381
+ lnbtc: Readonly<LightningBitcoin>;
795
2382
  litecoin: Readonly<Litecoin>;
2383
+ megaeth: Readonly<MegaETH>;
2384
+ mon: Readonly<Monad>;
2385
+ mantle: Readonly<Mantle>;
2386
+ mantra: Readonly<Mantra>;
2387
+ plume: Readonly<Plume>;
796
2388
  polygon: Readonly<Polygon>;
2389
+ polyx: Readonly<Polymesh>;
2390
+ phrs: Readonly<Pharos>;
2391
+ ctc: Readonly<Creditcoin>;
2392
+ hypeevm: Readonly<HypeEVM>;
2393
+ lineaeth: Readonly<LineaETH>;
2394
+ oas: Readonly<Oas>;
2395
+ og: Readonly<Og>;
797
2396
  ofc: Readonly<Ofc>;
2397
+ okbxlayer: Readonly<Xlayer>;
2398
+ opbnb: Readonly<OpBNB>;
2399
+ fantom: Readonly<Fantom>;
2400
+ morph: Readonly<Morph>;
2401
+ morpheth: Readonly<MorphETH>;
798
2402
  optimism: Readonly<Optimism>;
799
2403
  osmo: Readonly<Osmo>;
800
2404
  rbtc: Readonly<Rbtc>;
2405
+ rune: Readonly<Rune>;
801
2406
  stellar: Readonly<Stellar>;
802
2407
  sei: Readonly<Sei>;
2408
+ seievm: Readonly<SeiEvm>;
2409
+ sgb: Readonly<Songbird>;
803
2410
  sol: Readonly<Sol>;
2411
+ sonic: Readonly<Sonic>;
804
2412
  sui: Readonly<Sui>;
805
2413
  near: Readonly<Near>;
806
2414
  stx: Readonly<Stx>;
2415
+ somi: Readonly<Somi>;
2416
+ soneium: Readonly<Soneium>;
807
2417
  susd: Readonly<SUSD>;
2418
+ tao: Readonly<Bittensor>;
2419
+ tempo: Readonly<Tempo>;
808
2420
  tia: Readonly<Tia>;
809
2421
  ton: Readonly<Ton>;
810
2422
  trx: Readonly<Trx>;
2423
+ usdt0: Readonly<Usdt0>;
2424
+ vet: Readonly<Vet>;
2425
+ wemix: Readonly<Wemix>;
2426
+ world: Readonly<World>;
2427
+ xdc: Readonly<Xdc>;
2428
+ xpl: Readonly<Plasma>;
811
2429
  xrp: Readonly<Xrp>;
812
2430
  xtz: Readonly<Xtz>;
2431
+ xtzevm: Readonly<XtzEvm>;
813
2432
  zCash: Readonly<ZCash>;
814
2433
  zeta: Readonly<Zeta>;
2434
+ zkSync: Readonly<ZkSync>;
2435
+ zkSyncEra: Readonly<ZkSyncEra>;
2436
+ unieth: Readonly<Unieth>;
815
2437
  };
816
2438
  test: {
817
2439
  ada: Readonly<AdaTestnet>;
818
2440
  algorand: Readonly<AlgorandTestnet>;
2441
+ apechain: Readonly<ApeChainTestnet>;
2442
+ apt: Readonly<AptTestnet>;
819
2443
  arbitrum: Readonly<ArbitrumTestnet>;
2444
+ arcusdc: Readonly<ArcUSDCTestnet>;
2445
+ asi: Readonly<AsiTestnet>;
820
2446
  atom: Readonly<AtomTestnet>;
821
2447
  avalancheC: Readonly<AvalancheCTestnet>;
822
2448
  avalancheP: Readonly<AvalanchePTestnet>;
2449
+ baby: Readonly<BabyTestnet>;
2450
+ basechain: Readonly<BaseChainTestnet>;
823
2451
  bitcoin: Readonly<BitcoinTestnet>;
2452
+ bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
2453
+ bitcoinTestnet4: Readonly<BitcoinTestnet4>;
2454
+ bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
824
2455
  bitcoinCash: Readonly<BitcoinCashTestnet>;
825
2456
  bitcoinGold: Readonly<BitcoinGoldTestnet>;
826
2457
  bitcoinSV: Readonly<BitcoinSVTestnet>;
827
- bera: Readonly<BeraTestnet>;
2458
+ bera: Readonly<BerachainTestnet>;
828
2459
  bld: Readonly<BldTestnet>;
829
2460
  bsc: Readonly<BinanceSmartChainTestnet>;
2461
+ canton: Readonly<CantonTestnet>;
830
2462
  casper: Readonly<CasperTestnet>;
831
2463
  celo: Readonly<CeloTestnet>;
2464
+ chiliz: Readonly<ChilizTestnet>;
2465
+ codexeth: Readonly<CodexEthTestnet>;
2466
+ coredao: Readonly<CoredaoTestnet>;
2467
+ cronos: Readonly<CronosTestnet>;
832
2468
  dash: Readonly<DashTestnet>;
833
2469
  dogecoin: Readonly<DogecoinTestnet>;
834
- dot: Readonly<PolkadotTestnet>;
2470
+ dogeos: Readonly<DogeosTestnet>;
2471
+ dot: Readonly<WestendAssetHub>;
2472
+ dydx: Readonly<DydxTestnet>;
835
2473
  eCash: Readonly<ECashTestnet>;
836
2474
  eos: Readonly<EosTestnet>;
837
2475
  fiat: Readonly<FiatTestnet>;
2476
+ fetchai: Readonly<FetchAiTestnet>;
2477
+ flow: Readonly<FlowTestnet>;
2478
+ flr: Readonly<FlareTestnet>;
2479
+ flrP: Readonly<FlarePTestnet>;
2480
+ fluenteth: Readonly<FluentETHTestnet>;
2481
+ h: Readonly<HumanityProtocolTestnet>;
2482
+ mon: Readonly<MonadTestnet>;
2483
+ megaeth: Readonly<MegaETHTestnet>;
838
2484
  pyrmont: Readonly<Pyrmont>;
2485
+ plume: Readonly<PlumeTestnet>;
839
2486
  ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
840
2487
  hash: Readonly<HashTestnet>;
841
2488
  hedera: Readonly<HederaTestnet>;
2489
+ hoodeth: Readonly<HoodethTestnet>;
2490
+ hppeth: Readonly<HppethTestnet>;
2491
+ hederaEVM: Readonly<HederaEVMTestnet>;
2492
+ hemieth: Readonly<HemiEthTestnet>;
2493
+ icp: Readonly<IcpTestnet>;
2494
+ ip: Readonly<IPTestnet>;
2495
+ initia: Readonly<InitiaTestnet>;
842
2496
  injective: Readonly<InjectiveTestnet>;
2497
+ iota: Readonly<IotaTestnet>;
2498
+ irys: Readonly<IrysTestnet>;
843
2499
  islm: Readonly<IslmTestnet>;
844
- kava: Readonly<KavaTestnet>;
2500
+ jovayeth: Readonly<JovayETHTestnet>;
2501
+ kavacosmos: Readonly<KavaCosmosTestnet>;
2502
+ kavaevm: Readonly<KavaEVMTestnet>;
845
2503
  kovan: Readonly<Kovan>;
846
2504
  goerli: Readonly<Goerli>;
847
2505
  holesky: Readonly<Holesky>;
2506
+ hoodi: Readonly<Hoodi>;
2507
+ lnbtc: Readonly<LightningBitcoinTestnet>;
848
2508
  litecoin: Readonly<LitecoinTestnet>;
2509
+ mantle: Readonly<MantleTestnet>;
2510
+ mantra: Readonly<MantraTestnet>;
849
2511
  polygon: Readonly<PolygonTestnet>;
2512
+ polyx: Readonly<PolymeshTestnet>;
2513
+ phrs: Readonly<PharosTestnet>;
2514
+ ctc: Readonly<CreditcoinTestnet>;
2515
+ hypeevm: Readonly<HypeEVMTestnet>;
2516
+ lineaeth: Readonly<LineaETHTestnet>;
2517
+ oas: Readonly<OasTestnet>;
2518
+ og: Readonly<OgTestnet>;
850
2519
  ofc: Readonly<OfcTestnet>;
2520
+ okbxlayer: Readonly<XlayerTestnet>;
2521
+ opbnb: Readonly<OpBNBTestnet>;
2522
+ fantom: Readonly<FantomTestnet>;
2523
+ morph: Readonly<MorphTestnet>;
2524
+ morpheth: Readonly<MorphETHTestnet>;
851
2525
  optimism: Readonly<OptimismTestnet>;
852
2526
  osmo: Readonly<OsmoTestnet>;
853
2527
  rbtc: Readonly<RbtcTestnet>;
2528
+ rune: Readonly<RuneTestNet>;
2529
+ sgb: Readonly<SongbirdTestnet>;
854
2530
  stellar: Readonly<StellarTestnet>;
855
2531
  sei: Readonly<SeiTestnet>;
2532
+ seievm: Readonly<SeiEvmTestnet>;
856
2533
  sol: Readonly<SolTestnet>;
857
2534
  sui: Readonly<SuiTestnet>;
858
2535
  near: Readonly<NearTestnet>;
859
2536
  stx: Readonly<StxTestnet>;
2537
+ stt: Readonly<SomniaTestnet>;
2538
+ soneium: Readonly<SoneiumTestnet>;
2539
+ sonic: Readonly<SonicTestnet>;
2540
+ kaia: Readonly<KaiaTestnet>;
860
2541
  susd: Readonly<SUSDTestnet>;
861
2542
  coreum: Readonly<CoreumTestnet>;
2543
+ tao: Readonly<BittensorTestnet>;
2544
+ tempo: Readonly<TempoTestnet>;
862
2545
  tia: Readonly<TiaTestnet>;
863
2546
  ton: Readonly<TonTestnet>;
864
2547
  trx: Readonly<TrxTestnet>;
2548
+ usdt0: Readonly<Usdt0Testnet>;
2549
+ vet: Readonly<VetTestnet>;
2550
+ wemix: Readonly<WemixTestnet>;
2551
+ world: Readonly<WorldTestnet>;
2552
+ xdc: Readonly<XdcTestnet>;
2553
+ xpl: Readonly<PlasmaTestnet>;
865
2554
  xrp: Readonly<XrpTestnet>;
866
2555
  xtz: Readonly<XtzTestnet>;
2556
+ xtzevm: Readonly<XtzEvmTestnet>;
867
2557
  zCash: Readonly<ZCashTestnet>;
868
2558
  zeta: Readonly<ZetaTestnet>;
2559
+ zkSync: Readonly<ZkSyncTestnet>;
2560
+ zkSyncEra: Readonly<ZkSyncEraTestnet>;
2561
+ unieth: Readonly<UniethTestnet>;
869
2562
  };
870
2563
  };
2564
+ /**
2565
+ * Look up a registered network by its display name (e.g. "Ethereum", "Bitcoin").
2566
+ * Returns undefined for names not registered in local statics.
2567
+ */
2568
+ export declare function getNetworkByName(name: string): BaseNetwork | undefined;
2569
+ export declare function getNetworksMap(): Map<string, BaseNetwork>;
2570
+ /**
2571
+ * Dynamically register a new network in the lookup map.
2572
+ * Throws if a network with the same name is already registered.
2573
+ */
2574
+ export declare function registerNetwork(network: BaseNetwork): void;
2575
+ /**
2576
+ * Look up a network by its display name or JSON representation.
2577
+ *
2578
+ * Resolution order:
2579
+ * 1. If `network` is a JSON string representing a DynamicNetworkOptions object
2580
+ * (must have `name`, `type`, and `family` fields), construct and
2581
+ * return a new DynamicNetwork instance.
2582
+ * 2. Local statics cache via getNetworkByName().
2583
+ *
2584
+ * @param network - A network display name (e.g. "bitcoin") or a JSON-encoded
2585
+ * DynamicNetworkOptions object.
2586
+ * @returns The matching BaseNetwork (or DynamicNetwork) instance.
2587
+ * @throws {Error} If the network is not found in local statics and the input
2588
+ * is not a valid DynamicNetworkOptions JSON string.
2589
+ */
2590
+ export declare function getNetwork(network: string): BaseNetwork;
871
2591
  export {};
872
2592
  //# sourceMappingURL=networks.d.ts.map