@bitgo-beta/statics 10.0.1-alpha.48 → 10.0.1-alpha.481

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 (129) hide show
  1. package/dist/src/account.d.ts +1086 -73
  2. package/dist/src/account.d.ts.map +1 -1
  3. package/dist/src/account.js +1716 -162
  4. package/dist/src/ada.d.ts.map +1 -1
  5. package/dist/src/ada.js +9 -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 +1418 -0
  9. package/dist/src/avaxp.d.ts.map +1 -1
  10. package/dist/src/avaxp.js +11 -3
  11. package/dist/src/base.d.ts +2368 -39
  12. package/dist/src/base.d.ts.map +1 -1
  13. package/dist/src/base.js +2483 -55
  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 +732 -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 +2 -0
  27. package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
  28. package/dist/src/coins/botOfcTokens.js +5 -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 +43 -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 +199 -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 +15 -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 +2010 -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 +18 -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 +931 -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 +1762 -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 +453 -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 +366 -1400
  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 +1880 -60
  102. package/dist/src/networks.d.ts.map +1 -1
  103. package/dist/src/networks.js +2393 -148
  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 -102
  108. package/dist/src/tokenConfig.d.ts.map +1 -1
  109. package/dist/src/tokenConfig.js +1018 -205
  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 +85 -3
  113. package/dist/tsconfig.tsbuildinfo +1 -2744
  114. package/package.json +6 -3
  115. package/.mocharc.js +0 -10
  116. package/.prettierignore +0 -2
  117. package/CHANGELOG.md +0 -552
  118. package/dist/resources/dot/index.d.ts +0 -3
  119. package/dist/resources/dot/index.d.ts.map +0 -1
  120. package/dist/resources/dot/index.js +0 -15
  121. package/dist/resources/dot/mainnet.d.ts +0 -2
  122. package/dist/resources/dot/mainnet.d.ts.map +0 -1
  123. package/dist/resources/dot/mainnet.js +0 -5
  124. package/dist/resources/dot/westend.d.ts +0 -2
  125. package/dist/resources/dot/westend.d.ts.map +0 -1
  126. package/dist/resources/dot/westend.js +0 -5
  127. package/resources/dot/index.ts +0 -2
  128. package/resources/dot/mainnet.ts +0 -2
  129. package/resources/dot/westend.ts +0 -2
@@ -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,20 +102,30 @@ 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;
109
+ readonly blockExplorerUrl?: string;
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[];
46
118
  }
47
119
  /**
48
120
  * Specification name type of the chain. Used in setting up the registry
49
121
  */
50
- 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';
51
124
  export interface DotNetwork extends AccountNetwork {
52
125
  readonly specName: PolkadotSpecNameType;
53
126
  readonly genesisHash: string;
54
127
  readonly specVersion: number;
55
128
  readonly chainName: string;
56
- readonly metadataRpc: `0x${string}`;
57
129
  readonly txVersion: number;
58
130
  }
59
131
  export interface EthereumNetwork extends AccountNetwork {
@@ -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,74 @@ 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
+ }
225
+ declare class Arbitrum extends Mainnet implements EthereumNetwork {
226
+ name: string;
227
+ family: CoinFamily;
228
+ explorerUrl: string;
229
+ accountExplorerUrl: string;
230
+ chainId: number;
231
+ nativeCoinOperationHashPrefix: string;
232
+ tokenOperationHashPrefix: string;
233
+ forwarderFactoryAddress: string;
234
+ forwarderImplementationAddress: string;
235
+ walletFactoryAddress: string;
236
+ walletImplementationAddress: string;
237
+ batcherContractAddress: string;
238
+ }
239
+ declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
240
+ name: string;
241
+ family: CoinFamily;
242
+ explorerUrl: string;
243
+ accountExplorerUrl: string;
244
+ chainId: number;
245
+ nativeCoinOperationHashPrefix: string;
246
+ tokenOperationHashPrefix: string;
247
+ forwarderFactoryAddress: string;
248
+ forwarderImplementationAddress: string;
249
+ walletFactoryAddress: string;
250
+ walletImplementationAddress: string;
251
+ batcherContractAddress: string;
252
+ }
113
253
  declare class AvalancheC extends Mainnet implements AccountNetwork {
114
254
  name: string;
115
255
  family: CoinFamily;
116
256
  explorerUrl: string;
117
257
  accountExplorerUrl: string;
118
258
  chainId: number;
259
+ batcherContractAddress: string;
119
260
  }
120
261
  declare class AvalancheCTestnet extends Testnet implements AccountNetwork {
121
262
  name: string;
@@ -123,6 +264,7 @@ declare class AvalancheCTestnet extends Testnet implements AccountNetwork {
123
264
  explorerUrl: string;
124
265
  accountExplorerUrl: string;
125
266
  chainId: number;
267
+ batcherContractAddress: string;
126
268
  }
127
269
  declare class AvalancheP extends Mainnet implements AvalancheNetwork {
128
270
  name: string;
@@ -137,6 +279,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
137
279
  alias: string;
138
280
  vm: string;
139
281
  txFee: string;
282
+ maxImportFee: string;
140
283
  createSubnetTx: string;
141
284
  createChainTx: string;
142
285
  creationTxFee: string;
@@ -162,6 +305,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
162
305
  hrp: string;
163
306
  vm: string;
164
307
  txFee: string;
308
+ maxImportFee: string;
165
309
  createSubnetTx: string;
166
310
  createChainTx: string;
167
311
  creationTxFee: string;
@@ -180,6 +324,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
180
324
  explorerUrl: string;
181
325
  accountExplorerUrl: string;
182
326
  chainId: number;
327
+ nativeCoinOperationHashPrefix: string;
328
+ tokenOperationHashPrefix: string;
329
+ batcherContractAddress: string;
183
330
  }
184
331
  declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
185
332
  name: string;
@@ -187,6 +334,63 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
187
334
  explorerUrl: string;
188
335
  accountExplorerUrl: string;
189
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;
190
394
  }
191
395
  declare class Bitcoin extends Mainnet implements UtxoNetwork {
192
396
  name: string;
@@ -199,6 +403,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
199
403
  family: CoinFamily;
200
404
  utxolibName: string;
201
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;
202
425
  }
203
426
  declare class BitcoinCash extends Mainnet implements UtxoNetwork {
204
427
  name: string;
@@ -272,7 +495,7 @@ declare class ECashTestnet extends Testnet implements UtxoNetwork {
272
495
  utxolibName: string;
273
496
  explorerUrl: undefined;
274
497
  }
275
- declare class Polkadot extends Mainnet implements DotNetwork {
498
+ declare class PolkadotAssetHub extends Mainnet implements DotNetwork {
276
499
  name: string;
277
500
  family: CoinFamily;
278
501
  explorerUrl: string;
@@ -280,10 +503,9 @@ declare class Polkadot extends Mainnet implements DotNetwork {
280
503
  genesisHash: string;
281
504
  specVersion: number;
282
505
  chainName: string;
283
- metadataRpc: `0x${string}`;
284
506
  txVersion: number;
285
507
  }
286
- declare class PolkadotTestnet extends Testnet implements DotNetwork {
508
+ declare class WestendAssetHub extends Testnet implements DotNetwork {
287
509
  name: string;
288
510
  family: CoinFamily;
289
511
  explorerUrl: string;
@@ -291,7 +513,6 @@ declare class PolkadotTestnet extends Testnet implements DotNetwork {
291
513
  genesisHash: string;
292
514
  specVersion: number;
293
515
  chainName: string;
294
- metadataRpc: `0x${string}`;
295
516
  txVersion: number;
296
517
  }
297
518
  declare class Celo extends Mainnet implements EthereumNetwork {
@@ -300,6 +521,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
300
521
  explorerUrl: string;
301
522
  accountExplorerUrl: string;
302
523
  chainId: number;
524
+ nativeCoinOperationHashPrefix: string;
525
+ tokenOperationHashPrefix: string;
303
526
  }
304
527
  declare class CeloTestnet extends Testnet implements EthereumNetwork {
305
528
  name: string;
@@ -307,6 +530,42 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
307
530
  explorerUrl: string;
308
531
  accountExplorerUrl: string;
309
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;
310
569
  }
311
570
  declare class Casper extends Mainnet implements AccountNetwork {
312
571
  name: string;
@@ -325,10 +584,23 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
325
584
  family: CoinFamily;
326
585
  explorerUrl: string;
327
586
  accountExplorerUrl: string;
587
+ blockExplorerUrl: string;
328
588
  chainId: number;
329
589
  batcherContractAddress: string;
330
590
  forwarderFactoryAddress: string;
331
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;
332
604
  }
333
605
  declare class Ethereum2 extends Mainnet implements AccountNetwork {
334
606
  name: string;
@@ -345,6 +617,24 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
345
617
  batcherContractAddress: string;
346
618
  forwarderFactoryAddress: string;
347
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;
348
638
  }
349
639
  declare class Pyrmont extends Testnet implements AccountNetwork {
350
640
  name: string;
@@ -361,16 +651,59 @@ declare class Kovan extends Testnet implements EthereumNetwork {
361
651
  batcherContractAddress: string;
362
652
  forwarderFactoryAddress: string;
363
653
  forwarderImplementationAddress: string;
654
+ nativeCoinOperationHashPrefix: string;
655
+ tokenOperationHashPrefix: string;
364
656
  }
365
657
  declare class Goerli extends Testnet implements EthereumNetwork {
366
658
  name: string;
367
659
  family: CoinFamily;
368
660
  explorerUrl: string;
369
661
  accountExplorerUrl: string;
662
+ blockExplorerUrl: string;
663
+ chainId: number;
664
+ batcherContractAddress: string;
665
+ forwarderFactoryAddress: string;
666
+ forwarderImplementationAddress: string;
667
+ nativeCoinOperationHashPrefix: string;
668
+ tokenOperationHashPrefix: string;
669
+ }
670
+ declare class Holesky extends Testnet implements EthereumNetwork {
671
+ name: string;
672
+ family: CoinFamily;
673
+ explorerUrl: string;
674
+ accountExplorerUrl: string;
675
+ blockExplorerUrl: string;
676
+ chainId: number;
677
+ batcherContractAddress: string;
678
+ forwarderFactoryAddress: string;
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;
370
691
  chainId: number;
371
692
  batcherContractAddress: string;
372
693
  forwarderFactoryAddress: string;
373
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;
374
707
  }
375
708
  declare class EthereumClassic extends Mainnet implements EthereumNetwork {
376
709
  name: string;
@@ -378,6 +711,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
378
711
  explorerUrl: string;
379
712
  accountExplorerUrl: string;
380
713
  chainId: number;
714
+ nativeCoinOperationHashPrefix: string;
715
+ tokenOperationHashPrefix: string;
381
716
  }
382
717
  declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
383
718
  name: string;
@@ -385,6 +720,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
385
720
  explorerUrl: string;
386
721
  accountExplorerUrl: string;
387
722
  chainId: number;
723
+ nativeCoinOperationHashPrefix: string;
724
+ tokenOperationHashPrefix: string;
388
725
  }
389
726
  declare class Eos extends Mainnet implements AccountNetwork {
390
727
  name: string;
@@ -434,6 +771,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
434
771
  explorerUrl: string;
435
772
  accountExplorerUrl: string;
436
773
  chainId: number;
774
+ nativeCoinOperationHashPrefix: string;
775
+ tokenOperationHashPrefix: string;
437
776
  }
438
777
  declare class RbtcTestnet extends Testnet implements EthereumNetwork {
439
778
  name: string;
@@ -441,6 +780,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
441
780
  explorerUrl: string;
442
781
  accountExplorerUrl: string;
443
782
  chainId: number;
783
+ nativeCoinOperationHashPrefix: string;
784
+ tokenOperationHashPrefix: string;
444
785
  }
445
786
  declare class Stellar extends Mainnet implements AccountNetwork {
446
787
  name: string;
@@ -466,11 +807,13 @@ declare class Sui extends Mainnet implements AccountNetwork {
466
807
  name: string;
467
808
  family: CoinFamily;
468
809
  explorerUrl: string;
810
+ accountExplorerUrl: string;
469
811
  }
470
812
  declare class SuiTestnet extends Testnet implements AccountNetwork {
471
813
  name: string;
472
814
  family: CoinFamily;
473
815
  explorerUrl: string;
816
+ accountExplorerUrl: string;
474
817
  }
475
818
  declare class Atom extends Mainnet implements AccountNetwork {
476
819
  name: string;
@@ -482,143 +825,1470 @@ declare class AtomTestnet extends Testnet implements AccountNetwork {
482
825
  family: CoinFamily;
483
826
  explorerUrl: string;
484
827
  }
485
- declare class Stx extends Mainnet implements StacksNetwork {
828
+ declare class Osmo extends Mainnet implements AccountNetwork {
486
829
  name: string;
487
830
  family: CoinFamily;
488
831
  explorerUrl: string;
489
- sendmanymemoContractAddress: string;
490
- stakingContractAddress: string;
491
832
  }
492
- declare class StxTestnet extends Testnet implements StacksNetwork {
833
+ declare class OsmoTestnet extends Testnet implements AccountNetwork {
493
834
  name: string;
494
835
  family: CoinFamily;
495
836
  explorerUrl: string;
496
- sendmanymemoContractAddress: string;
497
- stakingContractAddress: string;
498
837
  }
499
- declare class SUSD extends Mainnet implements AccountNetwork {
838
+ declare class Tia extends Mainnet implements AccountNetwork {
500
839
  name: string;
501
840
  family: CoinFamily;
502
- explorerUrl: undefined;
841
+ explorerUrl: string;
503
842
  }
504
- declare class SUSDTestnet extends Testnet implements AccountNetwork {
843
+ declare class TiaTestnet extends Testnet implements AccountNetwork {
505
844
  name: string;
506
845
  family: CoinFamily;
507
- explorerUrl: undefined;
846
+ explorerUrl: string;
508
847
  }
509
- declare class FiatTestnet extends Testnet implements BaseNetwork {
848
+ declare class Hash extends Mainnet implements AccountNetwork {
510
849
  name: string;
511
850
  family: CoinFamily;
512
- explorerUrl: undefined;
851
+ explorerUrl: string;
513
852
  }
514
- declare class Fiat extends Mainnet implements BaseNetwork {
853
+ declare class HashTestnet extends Testnet implements AccountNetwork {
515
854
  name: string;
516
855
  family: CoinFamily;
517
- explorerUrl: undefined;
856
+ explorerUrl: string;
518
857
  }
519
- declare class Trx extends Mainnet implements TronNetwork {
858
+ declare class Bld extends Mainnet implements AccountNetwork {
520
859
  name: string;
521
860
  family: CoinFamily;
522
861
  explorerUrl: string;
523
- maxFeeLimit: string;
524
- contractCallFeeLimit: string;
525
862
  }
526
- declare class TrxTestnet extends Testnet implements TronNetwork {
863
+ declare class BldTestnet extends Testnet implements AccountNetwork {
527
864
  name: string;
528
865
  family: CoinFamily;
529
866
  explorerUrl: string;
530
- maxFeeLimit: string;
531
- contractCallFeeLimit: string;
532
867
  }
533
- declare class Xrp extends Mainnet implements AccountNetwork {
868
+ declare class Sei extends Mainnet implements AccountNetwork {
534
869
  name: string;
535
870
  family: CoinFamily;
536
871
  explorerUrl: string;
537
872
  }
538
- declare class XrpTestnet extends Testnet implements AccountNetwork {
873
+ declare class SeiTestnet extends Testnet implements AccountNetwork {
539
874
  name: string;
540
875
  family: CoinFamily;
541
876
  explorerUrl: string;
542
877
  }
543
- declare class Xtz extends Mainnet implements AccountNetwork {
878
+ declare class Zeta extends Mainnet implements AccountNetwork {
544
879
  name: string;
545
880
  family: CoinFamily;
546
881
  explorerUrl: string;
547
- accountExplorerUrl: string;
548
882
  }
549
- declare class XtzTestnet extends Testnet implements AccountNetwork {
883
+ declare class ZetaTestnet extends Testnet implements AccountNetwork {
550
884
  name: string;
551
885
  family: CoinFamily;
552
886
  explorerUrl: string;
553
- accountExplorerUrl: string;
554
887
  }
555
- declare class ZCash extends Mainnet implements UtxoNetwork {
888
+ declare class Injective extends Mainnet implements AccountNetwork {
556
889
  name: string;
557
890
  family: CoinFamily;
558
- utxolibName: string;
559
891
  explorerUrl: string;
560
892
  }
561
- declare class ZCashTestnet extends Testnet implements UtxoNetwork {
893
+ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
562
894
  name: string;
563
895
  family: CoinFamily;
564
- utxolibName: string;
565
896
  explorerUrl: string;
566
897
  }
567
- declare class Near extends Mainnet implements AccountNetwork {
898
+ declare class KavaCosmos extends Mainnet implements CosmosNetwork {
568
899
  name: string;
569
900
  family: CoinFamily;
570
901
  explorerUrl: string;
571
- feeReserve: string;
572
- storageReserve: string;
902
+ addressPrefix: string;
903
+ validatorPrefix: string;
904
+ denom: string;
905
+ gasAmount: string;
906
+ gasLimit: number;
907
+ validDenoms: string[];
573
908
  }
574
- declare class NearTestnet extends Testnet implements AccountNetwork {
909
+ declare class KavaCosmosTestnet extends Testnet implements CosmosNetwork {
575
910
  name: string;
576
911
  family: CoinFamily;
577
912
  explorerUrl: string;
578
- feeReserve: string;
579
- storageReserve: string;
913
+ addressPrefix: string;
914
+ validatorPrefix: string;
915
+ denom: string;
916
+ gasAmount: string;
917
+ gasLimit: number;
918
+ validDenoms: string[];
580
919
  }
581
- declare class Polygon extends Mainnet implements EthereumNetwork {
920
+ declare class Dydx extends Mainnet implements CosmosNetwork {
582
921
  name: string;
583
922
  family: CoinFamily;
584
923
  explorerUrl: string;
585
- accountExplorerUrl: string;
586
- chainId: number;
587
- forwarderFactoryAddress: string;
588
- forwarderImplementationAddress: string;
589
- walletFactoryAddress: string;
590
- walletImplementationAddress: string;
591
- batcherContractAddress: string;
924
+ addressPrefix: string;
925
+ validatorPrefix: string;
926
+ denom: string;
927
+ gasAmount: string;
928
+ gasLimit: number;
929
+ validDenoms: string[];
592
930
  }
593
- declare class PolygonTestnet extends Testnet implements EthereumNetwork {
931
+ declare class DydxTestnet extends Testnet implements CosmosNetwork {
594
932
  name: string;
595
933
  family: CoinFamily;
596
934
  explorerUrl: string;
597
- accountExplorerUrl: string;
598
- chainId: number;
599
- forwarderFactoryAddress: string;
600
- forwarderImplementationAddress: string;
601
- walletFactoryAddress: string;
602
- walletImplementationAddress: string;
603
- batcherContractAddress: string;
935
+ addressPrefix: string;
936
+ validatorPrefix: string;
937
+ denom: string;
938
+ gasAmount: string;
939
+ gasLimit: number;
940
+ validDenoms: string[];
941
+ }
942
+ declare class Ton extends Mainnet implements AccountNetwork {
943
+ name: string;
944
+ family: CoinFamily;
945
+ explorerUrl: string;
946
+ }
947
+ declare class TonTestnet extends Testnet implements AccountNetwork {
948
+ name: string;
949
+ family: CoinFamily;
950
+ explorerUrl: string;
951
+ }
952
+ declare class Coreum extends Mainnet implements AccountNetwork {
953
+ name: string;
954
+ family: CoinFamily;
955
+ explorerUrl: string;
956
+ }
957
+ declare class CoreumTestnet extends Testnet implements AccountNetwork {
958
+ name: string;
959
+ family: CoinFamily;
960
+ explorerUrl: string;
961
+ }
962
+ declare class Rune extends Mainnet implements AccountNetwork {
963
+ name: string;
964
+ family: CoinFamily;
965
+ explorerUrl: string;
966
+ }
967
+ declare class RuneTestNet extends Testnet implements AccountNetwork {
968
+ name: string;
969
+ family: CoinFamily;
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;
1043
+ }
1044
+ declare class Islm extends Mainnet implements AccountNetwork {
1045
+ name: string;
1046
+ family: CoinFamily;
1047
+ explorerUrl: string;
1048
+ }
1049
+ declare class IslmTestnet extends Testnet implements AccountNetwork {
1050
+ name: string;
1051
+ family: CoinFamily;
1052
+ explorerUrl: string;
1053
+ }
1054
+ declare class Stx extends Mainnet implements StacksNetwork {
1055
+ name: string;
1056
+ family: CoinFamily;
1057
+ explorerUrl: string;
1058
+ sendmanymemoContractAddress: string;
1059
+ stakingContractAddress: string;
1060
+ }
1061
+ declare class StxTestnet extends Testnet implements StacksNetwork {
1062
+ name: string;
1063
+ family: CoinFamily;
1064
+ explorerUrl: string;
1065
+ sendmanymemoContractAddress: string;
1066
+ stakingContractAddress: string;
1067
+ }
1068
+ declare class SUSD extends Mainnet implements AccountNetwork {
1069
+ name: string;
1070
+ family: CoinFamily;
1071
+ explorerUrl: undefined;
1072
+ }
1073
+ declare class SUSDTestnet extends Testnet implements AccountNetwork {
1074
+ name: string;
1075
+ family: CoinFamily;
1076
+ explorerUrl: undefined;
1077
+ }
1078
+ declare class FiatTestnet extends Testnet implements BaseNetwork {
1079
+ name: string;
1080
+ family: CoinFamily;
1081
+ explorerUrl: undefined;
1082
+ }
1083
+ declare class Fiat extends Mainnet implements BaseNetwork {
1084
+ name: string;
1085
+ family: CoinFamily;
1086
+ explorerUrl: undefined;
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
+ }
1103
+ declare class Trx extends Mainnet implements TronNetwork {
1104
+ name: string;
1105
+ family: CoinFamily;
1106
+ accountExplorerUrl: string;
1107
+ explorerUrl: string;
1108
+ maxFeeLimit: string;
1109
+ contractCallFeeLimit: string;
1110
+ }
1111
+ declare class TrxTestnet extends Testnet implements TronNetwork {
1112
+ name: string;
1113
+ family: CoinFamily;
1114
+ accountExplorerUrl: string;
1115
+ explorerUrl: string;
1116
+ maxFeeLimit: string;
1117
+ contractCallFeeLimit: string;
1118
+ }
1119
+ declare class Xrp extends Mainnet implements AccountNetwork {
1120
+ name: string;
1121
+ family: CoinFamily;
1122
+ explorerUrl: string;
1123
+ }
1124
+ declare class XrpTestnet extends Testnet implements AccountNetwork {
1125
+ name: string;
1126
+ family: CoinFamily;
1127
+ explorerUrl: string;
1128
+ }
1129
+ declare class Xtz extends Mainnet implements AccountNetwork {
1130
+ name: string;
1131
+ family: CoinFamily;
1132
+ explorerUrl: string;
1133
+ accountExplorerUrl: string;
1134
+ }
1135
+ declare class XtzTestnet extends Testnet implements AccountNetwork {
1136
+ name: string;
1137
+ family: CoinFamily;
1138
+ explorerUrl: string;
1139
+ accountExplorerUrl: string;
1140
+ }
1141
+ declare class ZCash extends Mainnet implements UtxoNetwork {
1142
+ name: string;
1143
+ family: CoinFamily;
1144
+ utxolibName: string;
1145
+ explorerUrl: string;
1146
+ }
1147
+ declare class ZCashTestnet extends Testnet implements UtxoNetwork {
1148
+ name: string;
1149
+ family: CoinFamily;
1150
+ utxolibName: string;
1151
+ explorerUrl: string;
1152
+ }
1153
+ declare class Near extends Mainnet implements AccountNetwork {
1154
+ name: string;
1155
+ family: CoinFamily;
1156
+ explorerUrl: string;
1157
+ feeReserve: string;
1158
+ storageReserve: string;
1159
+ }
1160
+ declare class NearTestnet extends Testnet implements AccountNetwork {
1161
+ name: string;
1162
+ family: CoinFamily;
1163
+ explorerUrl: string;
1164
+ feeReserve: string;
1165
+ storageReserve: string;
1166
+ }
1167
+ declare class Polygon extends Mainnet implements EthereumNetwork {
1168
+ name: string;
1169
+ family: CoinFamily;
1170
+ explorerUrl: string;
1171
+ accountExplorerUrl: string;
1172
+ chainId: number;
1173
+ forwarderFactoryAddress: string;
1174
+ forwarderImplementationAddress: string;
1175
+ walletFactoryAddress: string;
1176
+ walletImplementationAddress: string;
1177
+ batcherContractAddress: string;
1178
+ nativeCoinOperationHashPrefix: string;
1179
+ tokenOperationHashPrefix: string;
1180
+ walletV4ForwarderFactoryAddress: string;
1181
+ walletV4ForwarderImplementationAddress: string;
1182
+ }
1183
+ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
1184
+ name: string;
1185
+ family: CoinFamily;
1186
+ explorerUrl: string;
1187
+ accountExplorerUrl: string;
1188
+ chainId: number;
1189
+ forwarderFactoryAddress: string;
1190
+ forwarderImplementationAddress: string;
1191
+ walletFactoryAddress: string;
1192
+ walletImplementationAddress: string;
1193
+ batcherContractAddress: string;
1194
+ nativeCoinOperationHashPrefix: string;
1195
+ tokenOperationHashPrefix: string;
1196
+ walletV4ForwarderFactoryAddress: string;
1197
+ walletV4ForwarderImplementationAddress: string;
1198
+ }
1199
+ declare class Optimism extends Mainnet implements EthereumNetwork {
1200
+ name: string;
1201
+ family: CoinFamily;
1202
+ explorerUrl: string;
1203
+ accountExplorerUrl: string;
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;
1214
+ }
1215
+ declare class OptimismTestnet extends Testnet implements EthereumNetwork {
1216
+ name: string;
1217
+ family: CoinFamily;
1218
+ explorerUrl: string;
1219
+ accountExplorerUrl: string;
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;
1230
+ }
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;
604
2257
  }
605
2258
  export declare const Networks: {
606
2259
  main: {
607
2260
  ada: Readonly<Ada>;
608
2261
  algorand: Readonly<Algorand>;
2262
+ apechain: Readonly<ApeChain>;
2263
+ apt: Readonly<Apt>;
2264
+ arbitrum: Readonly<Arbitrum>;
2265
+ arcusdc: Readonly<ArcUSDC>;
2266
+ asi: Readonly<Asi>;
609
2267
  atom: Readonly<Atom>;
610
2268
  avalancheC: Readonly<AvalancheC>;
611
2269
  avalancheP: Readonly<AvalancheP>;
2270
+ baby: Readonly<Baby>;
2271
+ basechain: Readonly<BaseChain>;
612
2272
  bitcoin: Readonly<Bitcoin>;
613
2273
  bitcoinCash: Readonly<BitcoinCash>;
614
2274
  bitcoinGold: Readonly<BitcoinGold>;
615
2275
  bitcoinSV: Readonly<BitcoinSV>;
2276
+ bera: Readonly<Berachain>;
2277
+ bld: Readonly<Bld>;
616
2278
  bsc: Readonly<BinanceSmartChain>;
2279
+ canton: Readonly<Canton>;
617
2280
  casper: Readonly<Casper>;
618
2281
  celo: Readonly<Celo>;
2282
+ chiliz: Readonly<Chiliz>;
2283
+ codexeth: Readonly<CodexEth>;
2284
+ coredao: Readonly<Coredao>;
2285
+ coreum: Readonly<Coreum>;
2286
+ cronos: Readonly<Cronos>;
619
2287
  dash: Readonly<Dash>;
620
2288
  dogecoin: Readonly<Dogecoin>;
621
- dot: Readonly<Polkadot>;
2289
+ dogeos: Readonly<Dogeos>;
2290
+ dot: Readonly<PolkadotAssetHub>;
2291
+ dydx: Readonly<Dydx>;
622
2292
  eCash: Readonly<ECash>;
623
2293
  eos: Readonly<Eos>;
624
2294
  ethereum: Readonly<Ethereum>;
@@ -626,60 +2296,210 @@ export declare const Networks: {
626
2296
  ethereumClassic: Readonly<EthereumClassic>;
627
2297
  ethereumW: Readonly<EthereumW>;
628
2298
  fiat: Readonly<Fiat>;
2299
+ fetchai: Readonly<FetchAi>;
2300
+ flow: Readonly<Flow>;
2301
+ flr: Readonly<Flare>;
2302
+ flrP: Readonly<FlareP>;
2303
+ fluenteth: Readonly<FluentETH>;
2304
+ h: Readonly<HumanityProtocol>;
2305
+ hash: Readonly<Hash>;
2306
+ hoodeth: Readonly<Hoodeth>;
629
2307
  hedera: Readonly<Hedera>;
2308
+ hederaEVM: Readonly<HederaEVM>;
2309
+ hemieth: Readonly<HemiEth>;
2310
+ hppeth: Readonly<Hppeth>;
2311
+ icp: Readonly<Icp>;
2312
+ ip: Readonly<IP>;
2313
+ initia: Readonly<Initia>;
2314
+ iota: Readonly<Iota>;
2315
+ injective: Readonly<Injective>;
2316
+ irys: Readonly<Irys>;
2317
+ islm: Readonly<Islm>;
2318
+ jovayeth: Readonly<JovayETH>;
2319
+ kaia: Readonly<Kaia>;
2320
+ kavacosmos: Readonly<KavaCosmos>;
2321
+ kavaevm: Readonly<KavaEVM>;
2322
+ lnbtc: Readonly<LightningBitcoin>;
630
2323
  litecoin: Readonly<Litecoin>;
2324
+ megaeth: Readonly<MegaETH>;
2325
+ mon: Readonly<Monad>;
2326
+ mantle: Readonly<Mantle>;
2327
+ mantra: Readonly<Mantra>;
2328
+ plume: Readonly<Plume>;
631
2329
  polygon: Readonly<Polygon>;
2330
+ polyx: Readonly<Polymesh>;
2331
+ phrs: Readonly<Pharos>;
2332
+ ctc: Readonly<Creditcoin>;
2333
+ hypeevm: Readonly<HypeEVM>;
2334
+ lineaeth: Readonly<LineaETH>;
2335
+ oas: Readonly<Oas>;
2336
+ og: Readonly<Og>;
632
2337
  ofc: Readonly<Ofc>;
2338
+ okbxlayer: Readonly<Xlayer>;
2339
+ opbnb: Readonly<OpBNB>;
2340
+ fantom: Readonly<Fantom>;
2341
+ morph: Readonly<Morph>;
2342
+ morpheth: Readonly<MorphETH>;
2343
+ optimism: Readonly<Optimism>;
2344
+ osmo: Readonly<Osmo>;
633
2345
  rbtc: Readonly<Rbtc>;
2346
+ rune: Readonly<Rune>;
634
2347
  stellar: Readonly<Stellar>;
2348
+ sei: Readonly<Sei>;
2349
+ seievm: Readonly<SeiEvm>;
2350
+ sgb: Readonly<Songbird>;
635
2351
  sol: Readonly<Sol>;
2352
+ sonic: Readonly<Sonic>;
636
2353
  sui: Readonly<Sui>;
637
2354
  near: Readonly<Near>;
638
2355
  stx: Readonly<Stx>;
2356
+ somi: Readonly<Somi>;
2357
+ soneium: Readonly<Soneium>;
639
2358
  susd: Readonly<SUSD>;
2359
+ tao: Readonly<Bittensor>;
2360
+ tempo: Readonly<Tempo>;
2361
+ tia: Readonly<Tia>;
2362
+ ton: Readonly<Ton>;
640
2363
  trx: Readonly<Trx>;
2364
+ usdt0: Readonly<Usdt0>;
2365
+ vet: Readonly<Vet>;
2366
+ wemix: Readonly<Wemix>;
2367
+ world: Readonly<World>;
2368
+ xdc: Readonly<Xdc>;
2369
+ xpl: Readonly<Plasma>;
641
2370
  xrp: Readonly<Xrp>;
642
2371
  xtz: Readonly<Xtz>;
2372
+ xtzevm: Readonly<XtzEvm>;
643
2373
  zCash: Readonly<ZCash>;
2374
+ zeta: Readonly<Zeta>;
2375
+ zkSync: Readonly<ZkSync>;
2376
+ zkSyncEra: Readonly<ZkSyncEra>;
2377
+ unieth: Readonly<Unieth>;
644
2378
  };
645
2379
  test: {
646
2380
  ada: Readonly<AdaTestnet>;
647
2381
  algorand: Readonly<AlgorandTestnet>;
2382
+ apechain: Readonly<ApeChainTestnet>;
2383
+ apt: Readonly<AptTestnet>;
2384
+ arbitrum: Readonly<ArbitrumTestnet>;
2385
+ arcusdc: Readonly<ArcUSDCTestnet>;
2386
+ asi: Readonly<AsiTestnet>;
648
2387
  atom: Readonly<AtomTestnet>;
649
2388
  avalancheC: Readonly<AvalancheCTestnet>;
650
2389
  avalancheP: Readonly<AvalanchePTestnet>;
2390
+ baby: Readonly<BabyTestnet>;
2391
+ basechain: Readonly<BaseChainTestnet>;
651
2392
  bitcoin: Readonly<BitcoinTestnet>;
2393
+ bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
2394
+ bitcoinTestnet4: Readonly<BitcoinTestnet4>;
2395
+ bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
652
2396
  bitcoinCash: Readonly<BitcoinCashTestnet>;
653
2397
  bitcoinGold: Readonly<BitcoinGoldTestnet>;
654
2398
  bitcoinSV: Readonly<BitcoinSVTestnet>;
2399
+ bera: Readonly<BerachainTestnet>;
2400
+ bld: Readonly<BldTestnet>;
655
2401
  bsc: Readonly<BinanceSmartChainTestnet>;
2402
+ canton: Readonly<CantonTestnet>;
656
2403
  casper: Readonly<CasperTestnet>;
657
2404
  celo: Readonly<CeloTestnet>;
2405
+ chiliz: Readonly<ChilizTestnet>;
2406
+ codexeth: Readonly<CodexEthTestnet>;
2407
+ coredao: Readonly<CoredaoTestnet>;
2408
+ cronos: Readonly<CronosTestnet>;
658
2409
  dash: Readonly<DashTestnet>;
659
2410
  dogecoin: Readonly<DogecoinTestnet>;
660
- dot: Readonly<PolkadotTestnet>;
2411
+ dogeos: Readonly<DogeosTestnet>;
2412
+ dot: Readonly<WestendAssetHub>;
2413
+ dydx: Readonly<DydxTestnet>;
661
2414
  eCash: Readonly<ECashTestnet>;
662
2415
  eos: Readonly<EosTestnet>;
663
2416
  fiat: Readonly<FiatTestnet>;
2417
+ fetchai: Readonly<FetchAiTestnet>;
2418
+ flow: Readonly<FlowTestnet>;
2419
+ flr: Readonly<FlareTestnet>;
2420
+ flrP: Readonly<FlarePTestnet>;
2421
+ fluenteth: Readonly<FluentETHTestnet>;
2422
+ h: Readonly<HumanityProtocolTestnet>;
2423
+ mon: Readonly<MonadTestnet>;
2424
+ megaeth: Readonly<MegaETHTestnet>;
664
2425
  pyrmont: Readonly<Pyrmont>;
2426
+ plume: Readonly<PlumeTestnet>;
665
2427
  ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
2428
+ hash: Readonly<HashTestnet>;
666
2429
  hedera: Readonly<HederaTestnet>;
2430
+ hoodeth: Readonly<HoodethTestnet>;
2431
+ hppeth: Readonly<HppethTestnet>;
2432
+ hederaEVM: Readonly<HederaEVMTestnet>;
2433
+ hemieth: Readonly<HemiEthTestnet>;
2434
+ icp: Readonly<IcpTestnet>;
2435
+ ip: Readonly<IPTestnet>;
2436
+ initia: Readonly<InitiaTestnet>;
2437
+ injective: Readonly<InjectiveTestnet>;
2438
+ iota: Readonly<IotaTestnet>;
2439
+ irys: Readonly<IrysTestnet>;
2440
+ islm: Readonly<IslmTestnet>;
2441
+ jovayeth: Readonly<JovayETHTestnet>;
2442
+ kavacosmos: Readonly<KavaCosmosTestnet>;
2443
+ kavaevm: Readonly<KavaEVMTestnet>;
667
2444
  kovan: Readonly<Kovan>;
668
2445
  goerli: Readonly<Goerli>;
2446
+ holesky: Readonly<Holesky>;
2447
+ hoodi: Readonly<Hoodi>;
2448
+ lnbtc: Readonly<LightningBitcoinTestnet>;
669
2449
  litecoin: Readonly<LitecoinTestnet>;
2450
+ mantle: Readonly<MantleTestnet>;
2451
+ mantra: Readonly<MantraTestnet>;
670
2452
  polygon: Readonly<PolygonTestnet>;
2453
+ polyx: Readonly<PolymeshTestnet>;
2454
+ phrs: Readonly<PharosTestnet>;
2455
+ ctc: Readonly<CreditcoinTestnet>;
2456
+ hypeevm: Readonly<HypeEVMTestnet>;
2457
+ lineaeth: Readonly<LineaETHTestnet>;
2458
+ oas: Readonly<OasTestnet>;
2459
+ og: Readonly<OgTestnet>;
671
2460
  ofc: Readonly<OfcTestnet>;
2461
+ okbxlayer: Readonly<XlayerTestnet>;
2462
+ opbnb: Readonly<OpBNBTestnet>;
2463
+ fantom: Readonly<FantomTestnet>;
2464
+ morph: Readonly<MorphTestnet>;
2465
+ morpheth: Readonly<MorphETHTestnet>;
2466
+ optimism: Readonly<OptimismTestnet>;
2467
+ osmo: Readonly<OsmoTestnet>;
672
2468
  rbtc: Readonly<RbtcTestnet>;
2469
+ rune: Readonly<RuneTestNet>;
2470
+ sgb: Readonly<SongbirdTestnet>;
673
2471
  stellar: Readonly<StellarTestnet>;
2472
+ sei: Readonly<SeiTestnet>;
2473
+ seievm: Readonly<SeiEvmTestnet>;
674
2474
  sol: Readonly<SolTestnet>;
675
2475
  sui: Readonly<SuiTestnet>;
676
2476
  near: Readonly<NearTestnet>;
677
2477
  stx: Readonly<StxTestnet>;
2478
+ stt: Readonly<SomniaTestnet>;
2479
+ soneium: Readonly<SoneiumTestnet>;
2480
+ sonic: Readonly<SonicTestnet>;
2481
+ kaia: Readonly<KaiaTestnet>;
678
2482
  susd: Readonly<SUSDTestnet>;
2483
+ coreum: Readonly<CoreumTestnet>;
2484
+ tao: Readonly<BittensorTestnet>;
2485
+ tempo: Readonly<TempoTestnet>;
2486
+ tia: Readonly<TiaTestnet>;
2487
+ ton: Readonly<TonTestnet>;
679
2488
  trx: Readonly<TrxTestnet>;
2489
+ usdt0: Readonly<Usdt0Testnet>;
2490
+ vet: Readonly<VetTestnet>;
2491
+ wemix: Readonly<WemixTestnet>;
2492
+ world: Readonly<WorldTestnet>;
2493
+ xdc: Readonly<XdcTestnet>;
2494
+ xpl: Readonly<PlasmaTestnet>;
680
2495
  xrp: Readonly<XrpTestnet>;
681
2496
  xtz: Readonly<XtzTestnet>;
2497
+ xtzevm: Readonly<XtzEvmTestnet>;
682
2498
  zCash: Readonly<ZCashTestnet>;
2499
+ zeta: Readonly<ZetaTestnet>;
2500
+ zkSync: Readonly<ZkSyncTestnet>;
2501
+ zkSyncEra: Readonly<ZkSyncEraTestnet>;
2502
+ unieth: Readonly<UniethTestnet>;
683
2503
  };
684
2504
  };
685
2505
  export {};