@bitgo-beta/statics 15.1.1-beta.113 → 15.1.1-beta.1130

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 (92) hide show
  1. package/.mocharc.js +1 -1
  2. package/CHANGELOG.md +3075 -0
  3. package/dist/src/account.d.ts +769 -31
  4. package/dist/src/account.d.ts.map +1 -1
  5. package/dist/src/account.js +1252 -127
  6. package/dist/src/ada.d.ts.map +1 -1
  7. package/dist/src/ada.js +7 -3
  8. package/dist/src/allCoinsAndTokens.d.ts +2 -0
  9. package/dist/src/allCoinsAndTokens.d.ts.map +1 -0
  10. package/dist/src/allCoinsAndTokens.js +715 -0
  11. package/dist/src/avaxp.d.ts.map +1 -1
  12. package/dist/src/avaxp.js +8 -3
  13. package/dist/src/base.d.ts +1672 -40
  14. package/dist/src/base.d.ts.map +1 -1
  15. package/dist/src/base.js +1737 -50
  16. package/dist/src/coinFeatures.d.ts +99 -0
  17. package/dist/src/coinFeatures.d.ts.map +1 -0
  18. package/dist/src/coinFeatures.js +605 -0
  19. package/dist/src/coins/avaxTokens.d.ts +2 -0
  20. package/dist/src/coins/avaxTokens.d.ts.map +1 -0
  21. package/dist/src/coins/avaxTokens.js +100 -0
  22. package/dist/src/coins/botOfcTokens.d.ts +2 -0
  23. package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
  24. package/dist/src/coins/botOfcTokens.js +5 -0
  25. package/dist/src/coins/botTokens.d.ts +2 -0
  26. package/dist/src/coins/botTokens.d.ts.map +1 -0
  27. package/dist/src/coins/botTokens.js +5 -0
  28. package/dist/src/coins/bscTokens.d.ts +2 -0
  29. package/dist/src/coins/bscTokens.d.ts.map +1 -0
  30. package/dist/src/coins/bscTokens.js +160 -0
  31. package/dist/src/coins/cosmosTokens.d.ts +2 -0
  32. package/dist/src/coins/cosmosTokens.d.ts.map +1 -0
  33. package/dist/src/coins/cosmosTokens.js +12 -0
  34. package/dist/src/coins/erc20Coins.d.ts +2 -0
  35. package/dist/src/coins/erc20Coins.d.ts.map +1 -0
  36. package/dist/src/coins/erc20Coins.js +1516 -0
  37. package/dist/src/coins/nep141Tokens.d.ts +2 -0
  38. package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
  39. package/dist/src/coins/nep141Tokens.js +14 -0
  40. package/dist/src/coins/ofcCoins.d.ts +2 -0
  41. package/dist/src/coins/ofcCoins.d.ts.map +1 -0
  42. package/dist/src/coins/ofcCoins.js +632 -0
  43. package/dist/src/coins/ofcErc20Coins.d.ts +3 -0
  44. package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
  45. package/dist/src/coins/ofcErc20Coins.js +1416 -0
  46. package/dist/src/coins/polygonTokens.d.ts +2 -0
  47. package/dist/src/coins/polygonTokens.d.ts.map +1 -0
  48. package/dist/src/coins/polygonTokens.js +148 -0
  49. package/dist/src/coins/sip10Tokens.d.ts +2 -0
  50. package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
  51. package/dist/src/coins/sip10Tokens.js +25 -0
  52. package/dist/src/coins/solTokens.d.ts +2 -0
  53. package/dist/src/coins/solTokens.d.ts.map +1 -0
  54. package/dist/src/coins/solTokens.js +366 -0
  55. package/dist/src/coins/vetTokens.d.ts +2 -0
  56. package/dist/src/coins/vetTokens.d.ts.map +1 -0
  57. package/dist/src/coins/vetTokens.js +11 -0
  58. package/dist/src/coins.d.ts +10 -1
  59. package/dist/src/coins.d.ts.map +1 -1
  60. package/dist/src/coins.js +286 -1570
  61. package/dist/src/constants.d.ts +1 -0
  62. package/dist/src/constants.d.ts.map +1 -1
  63. package/dist/src/constants.js +3 -2
  64. package/dist/src/flrp.d.ts +40 -0
  65. package/dist/src/flrp.d.ts.map +1 -0
  66. package/dist/src/flrp.js +65 -0
  67. package/dist/src/index.d.ts +3 -1
  68. package/dist/src/index.d.ts.map +1 -1
  69. package/dist/src/index.js +24 -3
  70. package/dist/src/lightning.d.ts +43 -0
  71. package/dist/src/lightning.d.ts.map +1 -0
  72. package/dist/src/lightning.js +60 -0
  73. package/dist/src/map.d.ts +10 -0
  74. package/dist/src/map.d.ts.map +1 -1
  75. package/dist/src/map.js +117 -17
  76. package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
  77. package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
  78. package/dist/src/networkFeatureMapForTokens.js +30 -0
  79. package/dist/src/networks.d.ts +1091 -1
  80. package/dist/src/networks.d.ts.map +1 -1
  81. package/dist/src/networks.js +1367 -43
  82. package/dist/src/ofc.d.ts +495 -3
  83. package/dist/src/ofc.d.ts.map +1 -1
  84. package/dist/src/ofc.js +1201 -28
  85. package/dist/src/tokenConfig.d.ts +206 -14
  86. package/dist/src/tokenConfig.d.ts.map +1 -1
  87. package/dist/src/tokenConfig.js +789 -243
  88. package/dist/src/utxo.d.ts +3 -1
  89. package/dist/src/utxo.d.ts.map +1 -1
  90. package/dist/src/utxo.js +83 -3
  91. package/dist/tsconfig.tsbuildinfo +1 -1
  92. package/package.json +2 -2
@@ -1,3 +1,33 @@
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
+ vm?: string;
17
+ txFee?: string;
18
+ maxImportFee?: string;
19
+ createSubnetTx?: string;
20
+ createChainTx?: string;
21
+ creationTxFee?: string;
22
+ minConsumption?: string;
23
+ maxConsumption?: string;
24
+ maxSupply?: string;
25
+ minStake?: string;
26
+ minStakeDuration?: string;
27
+ maxStakeDuration?: string;
28
+ minDelegationStake?: string;
29
+ minDelegationFee?: string;
30
+ }
1
31
  import { CoinFamily } from './base';
2
32
  export declare enum NetworkType {
3
33
  MAINNET = "mainnet",
@@ -11,6 +41,25 @@ export declare abstract class BaseNetwork {
11
41
  }
12
42
  export interface UtxoNetwork extends BaseNetwork {
13
43
  utxolibName: string;
44
+ paygoAddressAttestationPubkey?: string;
45
+ }
46
+ export interface LightningNetwork extends UtxoNetwork {
47
+ /**
48
+ * The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
49
+ * between the user's extended private key and the Lightning service. This key facilitates secure communication
50
+ * by enabling the creation of a shared secret for encryption and decryption of data.
51
+ */
52
+ lightningServicePubKey: string;
53
+ /**
54
+ * The public key of the middleware service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
55
+ * between the user's extended private key and the middleware service.
56
+ */
57
+ middlewarePubKey: string;
58
+ /**
59
+ * The public key of the TAT service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
60
+ * between the user's extended private key and the TAT service.
61
+ */
62
+ tatPubKey: string;
14
63
  }
15
64
  export interface AdaNetwork extends BaseNetwork {
16
65
  utxolibName: string;
@@ -40,15 +89,25 @@ export interface AvalancheNetwork extends BaseNetwork {
40
89
  readonly minDelegationFee: string;
41
90
  readonly avaxAssetID: string;
42
91
  readonly txFee: string;
92
+ readonly maxImportFee: string;
43
93
  }
44
94
  export interface AccountNetwork extends BaseNetwork {
45
95
  readonly accountExplorerUrl?: string;
46
96
  readonly blockExplorerUrl?: string;
47
97
  }
98
+ export interface CosmosNetwork extends AccountNetwork {
99
+ readonly addressPrefix: string;
100
+ readonly validatorPrefix: string;
101
+ readonly denom: string;
102
+ readonly gasAmount: string;
103
+ readonly gasLimit: number;
104
+ readonly validDenoms: string[];
105
+ }
48
106
  /**
49
107
  * Specification name type of the chain. Used in setting up the registry
50
108
  */
51
- export declare type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
109
+ export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
110
+ export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet' | 'polymesh_mainnet';
52
111
  export interface DotNetwork extends AccountNetwork {
53
112
  readonly specName: PolkadotSpecNameType;
54
113
  readonly genesisHash: string;
@@ -61,6 +120,10 @@ export interface EthereumNetwork extends AccountNetwork {
61
120
  readonly batcherContractAddress?: string;
62
121
  readonly forwarderFactoryAddress?: string;
63
122
  readonly forwarderImplementationAddress?: string;
123
+ readonly nativeCoinOperationHashPrefix?: string;
124
+ readonly tokenOperationHashPrefix?: string;
125
+ readonly walletV4ForwarderFactoryAddress?: string;
126
+ readonly walletV4ForwarderImplementationAddress?: string;
64
127
  }
65
128
  export interface TronNetwork extends AccountNetwork {
66
129
  maxFeeLimit: string;
@@ -110,6 +173,60 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
110
173
  poolDeposit: number;
111
174
  stakeKeyDeposit: number;
112
175
  }
176
+ declare class Apt extends Mainnet implements AccountNetwork {
177
+ name: string;
178
+ family: CoinFamily;
179
+ explorerUrl: string;
180
+ accountExplorerUrl: string;
181
+ blockExplorerUrl: string;
182
+ }
183
+ declare class AptTestnet extends Testnet implements AccountNetwork {
184
+ name: string;
185
+ family: CoinFamily;
186
+ explorerUrl: string;
187
+ accountExplorerUrl: string;
188
+ blockExplorerUrl: string;
189
+ }
190
+ declare class Icp extends Mainnet implements AccountNetwork {
191
+ name: string;
192
+ family: CoinFamily;
193
+ explorerUrl: string;
194
+ accountExplorerUrl: string;
195
+ }
196
+ declare class IcpTestnet extends Testnet implements AccountNetwork {
197
+ name: string;
198
+ family: CoinFamily;
199
+ explorerUrl: string;
200
+ accountExplorerUrl: string;
201
+ }
202
+ declare class Arbitrum extends Mainnet implements EthereumNetwork {
203
+ name: string;
204
+ family: CoinFamily;
205
+ explorerUrl: string;
206
+ accountExplorerUrl: string;
207
+ chainId: number;
208
+ nativeCoinOperationHashPrefix: string;
209
+ tokenOperationHashPrefix: string;
210
+ forwarderFactoryAddress: string;
211
+ forwarderImplementationAddress: string;
212
+ walletFactoryAddress: string;
213
+ walletImplementationAddress: string;
214
+ batcherContractAddress: string;
215
+ }
216
+ declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
217
+ name: string;
218
+ family: CoinFamily;
219
+ explorerUrl: string;
220
+ accountExplorerUrl: string;
221
+ chainId: number;
222
+ nativeCoinOperationHashPrefix: string;
223
+ tokenOperationHashPrefix: string;
224
+ forwarderFactoryAddress: string;
225
+ forwarderImplementationAddress: string;
226
+ walletFactoryAddress: string;
227
+ walletImplementationAddress: string;
228
+ batcherContractAddress: string;
229
+ }
113
230
  declare class AvalancheC extends Mainnet implements AccountNetwork {
114
231
  name: string;
115
232
  family: CoinFamily;
@@ -137,6 +254,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
137
254
  alias: string;
138
255
  vm: string;
139
256
  txFee: string;
257
+ maxImportFee: string;
140
258
  createSubnetTx: string;
141
259
  createChainTx: string;
142
260
  creationTxFee: string;
@@ -162,6 +280,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
162
280
  hrp: string;
163
281
  vm: string;
164
282
  txFee: string;
283
+ maxImportFee: string;
165
284
  createSubnetTx: string;
166
285
  createChainTx: string;
167
286
  creationTxFee: string;
@@ -180,6 +299,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
180
299
  explorerUrl: string;
181
300
  accountExplorerUrl: string;
182
301
  chainId: number;
302
+ nativeCoinOperationHashPrefix: string;
303
+ tokenOperationHashPrefix: string;
304
+ batcherContractAddress: string;
183
305
  }
184
306
  declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
185
307
  name: string;
@@ -187,6 +309,27 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
187
309
  explorerUrl: string;
188
310
  accountExplorerUrl: string;
189
311
  chainId: number;
312
+ nativeCoinOperationHashPrefix: string;
313
+ tokenOperationHashPrefix: string;
314
+ batcherContractAddress: string;
315
+ }
316
+ declare class LightningBitcoin extends Mainnet implements LightningNetwork {
317
+ name: string;
318
+ family: CoinFamily;
319
+ utxolibName: string;
320
+ explorerUrl: string;
321
+ lightningServicePubKey: string;
322
+ middlewarePubKey: string;
323
+ tatPubKey: string;
324
+ }
325
+ declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
326
+ name: string;
327
+ family: CoinFamily;
328
+ utxolibName: string;
329
+ explorerUrl: string;
330
+ lightningServicePubKey: string;
331
+ middlewarePubKey: string;
332
+ tatPubKey: string;
190
333
  }
191
334
  declare class Bitcoin extends Mainnet implements UtxoNetwork {
192
335
  name: string;
@@ -199,6 +342,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
199
342
  family: CoinFamily;
200
343
  utxolibName: string;
201
344
  explorerUrl: string;
345
+ paygoAddressAttestationPubkey: string;
346
+ }
347
+ declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
348
+ name: string;
349
+ family: CoinFamily;
350
+ utxolibName: string;
351
+ explorerUrl: string;
352
+ }
353
+ declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
354
+ name: string;
355
+ family: CoinFamily;
356
+ utxolibName: string;
357
+ explorerUrl: string;
358
+ }
359
+ declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
360
+ name: string;
361
+ family: CoinFamily;
362
+ utxolibName: string;
363
+ explorerUrl: string;
202
364
  }
203
365
  declare class BitcoinCash extends Mainnet implements UtxoNetwork {
204
366
  name: string;
@@ -298,6 +460,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
298
460
  explorerUrl: string;
299
461
  accountExplorerUrl: string;
300
462
  chainId: number;
463
+ nativeCoinOperationHashPrefix: string;
464
+ tokenOperationHashPrefix: string;
301
465
  }
302
466
  declare class CeloTestnet extends Testnet implements EthereumNetwork {
303
467
  name: string;
@@ -305,6 +469,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
305
469
  explorerUrl: string;
306
470
  accountExplorerUrl: string;
307
471
  chainId: number;
472
+ nativeCoinOperationHashPrefix: string;
473
+ tokenOperationHashPrefix: string;
308
474
  }
309
475
  declare class Casper extends Mainnet implements AccountNetwork {
310
476
  name: string;
@@ -328,6 +494,10 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
328
494
  batcherContractAddress: string;
329
495
  forwarderFactoryAddress: string;
330
496
  forwarderImplementationAddress: string;
497
+ nativeCoinOperationHashPrefix: string;
498
+ tokenOperationHashPrefix: string;
499
+ walletV4ForwarderFactoryAddress: string;
500
+ walletV4ForwarderImplementationAddress: string;
331
501
  }
332
502
  declare class Ethereum2 extends Mainnet implements AccountNetwork {
333
503
  name: string;
@@ -344,6 +514,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
344
514
  batcherContractAddress: string;
345
515
  forwarderFactoryAddress: string;
346
516
  forwarderImplementationAddress: string;
517
+ nativeCoinOperationHashPrefix: string;
518
+ tokenOperationHashPrefix: string;
347
519
  }
348
520
  declare class Pyrmont extends Testnet implements AccountNetwork {
349
521
  name: string;
@@ -360,6 +532,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
360
532
  batcherContractAddress: string;
361
533
  forwarderFactoryAddress: string;
362
534
  forwarderImplementationAddress: string;
535
+ nativeCoinOperationHashPrefix: string;
536
+ tokenOperationHashPrefix: string;
363
537
  }
364
538
  declare class Goerli extends Testnet implements EthereumNetwork {
365
539
  name: string;
@@ -371,6 +545,38 @@ declare class Goerli extends Testnet implements EthereumNetwork {
371
545
  batcherContractAddress: string;
372
546
  forwarderFactoryAddress: string;
373
547
  forwarderImplementationAddress: string;
548
+ nativeCoinOperationHashPrefix: string;
549
+ tokenOperationHashPrefix: string;
550
+ }
551
+ declare class Holesky extends Testnet implements EthereumNetwork {
552
+ name: string;
553
+ family: CoinFamily;
554
+ explorerUrl: string;
555
+ accountExplorerUrl: string;
556
+ blockExplorerUrl: string;
557
+ chainId: number;
558
+ batcherContractAddress: string;
559
+ forwarderFactoryAddress: string;
560
+ forwarderImplementationAddress: string;
561
+ nativeCoinOperationHashPrefix: string;
562
+ tokenOperationHashPrefix: string;
563
+ walletV4ForwarderFactoryAddress: string;
564
+ walletV4ForwarderImplementationAddress: string;
565
+ }
566
+ declare class Hoodi extends Testnet implements EthereumNetwork {
567
+ name: string;
568
+ family: CoinFamily;
569
+ explorerUrl: string;
570
+ accountExplorerUrl: string;
571
+ blockExplorerUrl: string;
572
+ chainId: number;
573
+ batcherContractAddress: string;
574
+ forwarderFactoryAddress: string;
575
+ forwarderImplementationAddress: string;
576
+ nativeCoinOperationHashPrefix: string;
577
+ tokenOperationHashPrefix: string;
578
+ walletV4ForwarderFactoryAddress: string;
579
+ walletV4ForwarderImplementationAddress: string;
374
580
  }
375
581
  declare class EthereumClassic extends Mainnet implements EthereumNetwork {
376
582
  name: string;
@@ -378,6 +584,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
378
584
  explorerUrl: string;
379
585
  accountExplorerUrl: string;
380
586
  chainId: number;
587
+ nativeCoinOperationHashPrefix: string;
588
+ tokenOperationHashPrefix: string;
381
589
  }
382
590
  declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
383
591
  name: string;
@@ -385,6 +593,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
385
593
  explorerUrl: string;
386
594
  accountExplorerUrl: string;
387
595
  chainId: number;
596
+ nativeCoinOperationHashPrefix: string;
597
+ tokenOperationHashPrefix: string;
388
598
  }
389
599
  declare class Eos extends Mainnet implements AccountNetwork {
390
600
  name: string;
@@ -434,6 +644,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
434
644
  explorerUrl: string;
435
645
  accountExplorerUrl: string;
436
646
  chainId: number;
647
+ nativeCoinOperationHashPrefix: string;
648
+ tokenOperationHashPrefix: string;
437
649
  }
438
650
  declare class RbtcTestnet extends Testnet implements EthereumNetwork {
439
651
  name: string;
@@ -441,6 +653,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
441
653
  explorerUrl: string;
442
654
  accountExplorerUrl: string;
443
655
  chainId: number;
656
+ nativeCoinOperationHashPrefix: string;
657
+ tokenOperationHashPrefix: string;
444
658
  }
445
659
  declare class Stellar extends Mainnet implements AccountNetwork {
446
660
  name: string;
@@ -552,6 +766,116 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
552
766
  family: CoinFamily;
553
767
  explorerUrl: string;
554
768
  }
769
+ declare class Kava extends Mainnet implements AccountNetwork {
770
+ name: string;
771
+ family: CoinFamily;
772
+ explorerUrl: string;
773
+ }
774
+ declare class KavaTestnet extends Testnet implements AccountNetwork {
775
+ name: string;
776
+ family: CoinFamily;
777
+ explorerUrl: string;
778
+ }
779
+ declare class Ton extends Mainnet implements AccountNetwork {
780
+ name: string;
781
+ family: CoinFamily;
782
+ explorerUrl: string;
783
+ }
784
+ declare class TonTestnet extends Testnet implements AccountNetwork {
785
+ name: string;
786
+ family: CoinFamily;
787
+ explorerUrl: string;
788
+ }
789
+ declare class Coreum extends Mainnet implements AccountNetwork {
790
+ name: string;
791
+ family: CoinFamily;
792
+ explorerUrl: string;
793
+ }
794
+ declare class CoreumTestnet extends Testnet implements AccountNetwork {
795
+ name: string;
796
+ family: CoinFamily;
797
+ explorerUrl: string;
798
+ }
799
+ declare class Rune extends Mainnet implements AccountNetwork {
800
+ name: string;
801
+ family: CoinFamily;
802
+ explorerUrl: string;
803
+ }
804
+ declare class RuneTestNet extends Testnet implements AccountNetwork {
805
+ name: string;
806
+ family: CoinFamily;
807
+ explorerUrl: string;
808
+ }
809
+ declare class Baby extends Mainnet implements AccountNetwork {
810
+ name: string;
811
+ family: CoinFamily;
812
+ explorerUrl: string;
813
+ }
814
+ declare class BabyTestnet extends Testnet implements AccountNetwork {
815
+ name: string;
816
+ family: CoinFamily;
817
+ explorerUrl: string;
818
+ }
819
+ declare class Mantra extends Mainnet implements AccountNetwork {
820
+ name: string;
821
+ family: CoinFamily;
822
+ explorerUrl: string;
823
+ }
824
+ declare class MantraTestnet extends Testnet implements AccountNetwork {
825
+ name: string;
826
+ family: CoinFamily;
827
+ explorerUrl: string;
828
+ }
829
+ declare class Cronos extends Mainnet implements AccountNetwork {
830
+ name: string;
831
+ family: CoinFamily;
832
+ explorerUrl: string;
833
+ }
834
+ declare class CronosTestnet extends Testnet implements AccountNetwork {
835
+ name: string;
836
+ family: CoinFamily;
837
+ explorerUrl: string;
838
+ }
839
+ declare class FetchAi extends Mainnet implements AccountNetwork {
840
+ name: string;
841
+ family: CoinFamily;
842
+ explorerUrl: string;
843
+ }
844
+ declare class FetchAiTestnet extends Testnet implements AccountNetwork {
845
+ name: string;
846
+ family: CoinFamily;
847
+ explorerUrl: string;
848
+ }
849
+ declare class Initia extends Mainnet implements AccountNetwork {
850
+ name: string;
851
+ family: CoinFamily;
852
+ explorerUrl: string;
853
+ }
854
+ declare class InitiaTestnet extends Testnet implements AccountNetwork {
855
+ name: string;
856
+ family: CoinFamily;
857
+ explorerUrl: string;
858
+ }
859
+ declare class Asi extends Mainnet implements AccountNetwork {
860
+ name: string;
861
+ family: CoinFamily;
862
+ explorerUrl: string;
863
+ }
864
+ declare class AsiTestnet extends Testnet implements AccountNetwork {
865
+ name: string;
866
+ family: CoinFamily;
867
+ explorerUrl: string;
868
+ }
869
+ declare class Islm extends Mainnet implements AccountNetwork {
870
+ name: string;
871
+ family: CoinFamily;
872
+ explorerUrl: string;
873
+ }
874
+ declare class IslmTestnet extends Testnet implements AccountNetwork {
875
+ name: string;
876
+ family: CoinFamily;
877
+ explorerUrl: string;
878
+ }
555
879
  declare class Stx extends Mainnet implements StacksNetwork {
556
880
  name: string;
557
881
  family: CoinFamily;
@@ -586,9 +910,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
586
910
  family: CoinFamily;
587
911
  explorerUrl: undefined;
588
912
  }
913
+ declare class Bittensor extends Mainnet implements AccountNetwork {
914
+ name: string;
915
+ family: CoinFamily;
916
+ explorerUrl: string;
917
+ }
918
+ declare class BittensorTestnet extends Testnet implements AccountNetwork {
919
+ name: string;
920
+ family: CoinFamily;
921
+ explorerUrl: string;
922
+ specName: SubstrateSpecNameType;
923
+ genesisHash: string;
924
+ specVersion: number;
925
+ chainName: string;
926
+ txVersion: number;
927
+ }
589
928
  declare class Trx extends Mainnet implements TronNetwork {
590
929
  name: string;
591
930
  family: CoinFamily;
931
+ accountExplorerUrl: string;
592
932
  explorerUrl: string;
593
933
  maxFeeLimit: string;
594
934
  contractCallFeeLimit: string;
@@ -596,6 +936,7 @@ declare class Trx extends Mainnet implements TronNetwork {
596
936
  declare class TrxTestnet extends Testnet implements TronNetwork {
597
937
  name: string;
598
938
  family: CoinFamily;
939
+ accountExplorerUrl: string;
599
940
  explorerUrl: string;
600
941
  maxFeeLimit: string;
601
942
  contractCallFeeLimit: string;
@@ -614,11 +955,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
614
955
  name: string;
615
956
  family: CoinFamily;
616
957
  explorerUrl: string;
958
+ accountExplorerUrl: string;
617
959
  }
618
960
  declare class XtzTestnet extends Testnet implements AccountNetwork {
619
961
  name: string;
620
962
  family: CoinFamily;
621
963
  explorerUrl: string;
964
+ accountExplorerUrl: string;
622
965
  }
623
966
  declare class ZCash extends Mainnet implements UtxoNetwork {
624
967
  name: string;
@@ -657,6 +1000,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
657
1000
  walletFactoryAddress: string;
658
1001
  walletImplementationAddress: string;
659
1002
  batcherContractAddress: string;
1003
+ nativeCoinOperationHashPrefix: string;
1004
+ tokenOperationHashPrefix: string;
660
1005
  }
661
1006
  declare class PolygonTestnet extends Testnet implements EthereumNetwork {
662
1007
  name: string;
@@ -669,22 +1014,680 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
669
1014
  walletFactoryAddress: string;
670
1015
  walletImplementationAddress: string;
671
1016
  batcherContractAddress: string;
1017
+ nativeCoinOperationHashPrefix: string;
1018
+ tokenOperationHashPrefix: string;
1019
+ }
1020
+ declare class Optimism extends Mainnet implements EthereumNetwork {
1021
+ name: string;
1022
+ family: CoinFamily;
1023
+ explorerUrl: string;
1024
+ accountExplorerUrl: string;
1025
+ chainId: number;
1026
+ nativeCoinOperationHashPrefix: string;
1027
+ tokenOperationHashPrefix: string;
1028
+ forwarderFactoryAddress: string;
1029
+ forwarderImplementationAddress: string;
1030
+ walletFactoryAddress: string;
1031
+ walletImplementationAddress: string;
1032
+ batcherContractAddress: string;
1033
+ }
1034
+ declare class OptimismTestnet extends Testnet implements EthereumNetwork {
1035
+ name: string;
1036
+ family: CoinFamily;
1037
+ explorerUrl: string;
1038
+ accountExplorerUrl: string;
1039
+ chainId: number;
1040
+ nativeCoinOperationHashPrefix: string;
1041
+ tokenOperationHashPrefix: string;
1042
+ forwarderFactoryAddress: string;
1043
+ forwarderImplementationAddress: string;
1044
+ walletFactoryAddress: string;
1045
+ walletImplementationAddress: string;
1046
+ batcherContractAddress: string;
1047
+ }
1048
+ declare class ZkSync extends Mainnet implements EthereumNetwork {
1049
+ name: string;
1050
+ family: CoinFamily;
1051
+ explorerUrl: string;
1052
+ accountExplorerUrl: string;
1053
+ chainId: number;
1054
+ nativeCoinOperationHashPrefix: string;
1055
+ tokenOperationHashPrefix: string;
1056
+ }
1057
+ declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
1058
+ name: string;
1059
+ family: CoinFamily;
1060
+ explorerUrl: string;
1061
+ accountExplorerUrl: string;
1062
+ chainId: number;
1063
+ nativeCoinOperationHashPrefix: string;
1064
+ tokenOperationHashPrefix: string;
1065
+ forwarderFactoryAddress: string;
1066
+ forwarderImplementationAddress: string;
1067
+ walletFactoryAddress: string;
1068
+ walletImplementationAddress: string;
1069
+ }
1070
+ declare class Berachain extends Mainnet implements EthereumNetwork {
1071
+ name: string;
1072
+ family: CoinFamily;
1073
+ explorerUrl: string;
1074
+ accountExplorerUrl: string;
1075
+ chainId: number;
1076
+ nativeCoinOperationHashPrefix: string;
1077
+ tokenOperationHashPrefix: string;
1078
+ batcherContractAddress: string;
1079
+ forwarderFactoryAddress: string;
1080
+ forwarderImplementationAddress: string;
1081
+ }
1082
+ declare class BerachainTestnet extends Testnet implements EthereumNetwork {
1083
+ name: string;
1084
+ family: CoinFamily;
1085
+ explorerUrl: string;
1086
+ accountExplorerUrl: string;
1087
+ chainId: number;
1088
+ nativeCoinOperationHashPrefix: string;
1089
+ tokenOperationHashPrefix: string;
1090
+ batcherContractAddress: string;
1091
+ forwarderFactoryAddress: string;
1092
+ forwarderImplementationAddress: string;
1093
+ }
1094
+ declare class Oas extends Mainnet implements EthereumNetwork {
1095
+ name: string;
1096
+ family: CoinFamily;
1097
+ explorerUrl: string;
1098
+ accountExplorerUrl: string;
1099
+ chainId: number;
1100
+ nativeCoinOperationHashPrefix: string;
1101
+ batcherContractAddress: string;
1102
+ forwarderFactoryAddress: string;
1103
+ forwarderImplementationAddress: string;
1104
+ }
1105
+ declare class OasTestnet extends Testnet implements EthereumNetwork {
1106
+ name: string;
1107
+ family: CoinFamily;
1108
+ explorerUrl: string;
1109
+ accountExplorerUrl: string;
1110
+ chainId: number;
1111
+ nativeCoinOperationHashPrefix: string;
1112
+ batcherContractAddress: string;
1113
+ forwarderFactoryAddress: string;
1114
+ forwarderImplementationAddress: string;
1115
+ }
1116
+ declare class Coredao extends Mainnet implements EthereumNetwork {
1117
+ name: string;
1118
+ family: CoinFamily;
1119
+ explorerUrl: string;
1120
+ accountExplorerUrl: string;
1121
+ chainId: number;
1122
+ nativeCoinOperationHashPrefix: string;
1123
+ batcherContractAddress: string;
1124
+ forwarderFactoryAddress: string;
1125
+ forwarderImplementationAddress: string;
1126
+ }
1127
+ declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
1128
+ name: string;
1129
+ family: CoinFamily;
1130
+ explorerUrl: string;
1131
+ accountExplorerUrl: string;
1132
+ chainId: number;
1133
+ nativeCoinOperationHashPrefix: string;
1134
+ batcherContractAddress: string;
1135
+ forwarderFactoryAddress: string;
1136
+ forwarderImplementationAddress: string;
1137
+ }
1138
+ declare class IP extends Mainnet implements EthereumNetwork {
1139
+ name: string;
1140
+ family: CoinFamily;
1141
+ explorerUrl: string;
1142
+ accountExplorerUrl: string;
1143
+ chainId: number;
1144
+ nativeCoinOperationHashPrefix: string;
1145
+ }
1146
+ declare class IPTestnet extends Testnet implements EthereumNetwork {
1147
+ name: string;
1148
+ family: CoinFamily;
1149
+ explorerUrl: string;
1150
+ accountExplorerUrl: string;
1151
+ chainId: number;
1152
+ nativeCoinOperationHashPrefix: string;
1153
+ }
1154
+ declare class ApeChain extends Mainnet implements EthereumNetwork {
1155
+ name: string;
1156
+ family: CoinFamily;
1157
+ explorerUrl: string;
1158
+ accountExplorerUrl: string;
1159
+ chainId: number;
1160
+ nativeCoinOperationHashPrefix: string;
1161
+ }
1162
+ declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
1163
+ name: string;
1164
+ family: CoinFamily;
1165
+ explorerUrl: string;
1166
+ accountExplorerUrl: string;
1167
+ chainId: number;
1168
+ nativeCoinOperationHashPrefix: string;
1169
+ forwarderFactoryAddress: string;
1170
+ forwarderImplementationAddress: string;
1171
+ walletFactoryAddress: string;
1172
+ walletImplementationAddress: string;
1173
+ batcherContractAddress: string;
1174
+ }
1175
+ declare class Pharos extends Mainnet implements EthereumNetwork {
1176
+ name: string;
1177
+ family: CoinFamily;
1178
+ explorerUrl: string;
1179
+ accountExplorerUrl: string;
1180
+ chainId: number;
1181
+ nativeCoinOperationHashPrefix: string;
1182
+ }
1183
+ declare class PharosTestnet extends Testnet implements EthereumNetwork {
1184
+ name: string;
1185
+ family: CoinFamily;
1186
+ explorerUrl: string;
1187
+ accountExplorerUrl: string;
1188
+ chainId: number;
1189
+ nativeCoinOperationHashPrefix: string;
1190
+ }
1191
+ declare class Creditcoin extends Mainnet implements EthereumNetwork {
1192
+ name: string;
1193
+ family: CoinFamily;
1194
+ explorerUrl: string;
1195
+ accountExplorerUrl: string;
1196
+ chainId: number;
1197
+ nativeCoinOperationHashPrefix: string;
1198
+ }
1199
+ declare class Plasma extends Mainnet implements EthereumNetwork {
1200
+ name: string;
1201
+ family: CoinFamily;
1202
+ explorerUrl: string;
1203
+ accountExplorerUrl: string;
1204
+ chainId: number;
1205
+ nativeCoinOperationHashPrefix: string;
1206
+ }
1207
+ declare class PlasmaTestnet extends Testnet implements EthereumNetwork {
1208
+ name: string;
1209
+ family: CoinFamily;
1210
+ explorerUrl: string;
1211
+ accountExplorerUrl: string;
1212
+ chainId: number;
1213
+ nativeCoinOperationHashPrefix: string;
1214
+ }
1215
+ declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
1216
+ name: string;
1217
+ family: CoinFamily;
1218
+ explorerUrl: string;
1219
+ accountExplorerUrl: string;
1220
+ chainId: number;
1221
+ nativeCoinOperationHashPrefix: string;
1222
+ }
1223
+ declare class HypeEVM extends Mainnet implements EthereumNetwork {
1224
+ name: string;
1225
+ family: CoinFamily;
1226
+ explorerUrl: string;
1227
+ accountExplorerUrl: string;
1228
+ chainId: number;
1229
+ nativeCoinOperationHashPrefix: string;
1230
+ }
1231
+ declare class LineaETH extends Mainnet implements EthereumNetwork {
1232
+ name: string;
1233
+ family: CoinFamily;
1234
+ explorerUrl: string;
1235
+ accountExplorerUrl: string;
1236
+ chainId: number;
1237
+ nativeCoinOperationHashPrefix: string;
1238
+ }
1239
+ declare class LineaETHTestnet extends Testnet implements EthereumNetwork {
1240
+ name: string;
1241
+ family: CoinFamily;
1242
+ explorerUrl: string;
1243
+ accountExplorerUrl: string;
1244
+ chainId: number;
1245
+ nativeCoinOperationHashPrefix: string;
1246
+ }
1247
+ declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
1248
+ name: string;
1249
+ family: CoinFamily;
1250
+ explorerUrl: string;
1251
+ accountExplorerUrl: string;
1252
+ chainId: number;
1253
+ nativeCoinOperationHashPrefix: string;
1254
+ }
1255
+ declare class Sonic extends Mainnet implements EthereumNetwork {
1256
+ name: string;
1257
+ family: CoinFamily;
1258
+ explorerUrl: string;
1259
+ accountExplorerUrl: string;
1260
+ chainId: number;
1261
+ nativeCoinOperationHashPrefix: string;
1262
+ }
1263
+ declare class SonicTestnet extends Testnet implements EthereumNetwork {
1264
+ name: string;
1265
+ family: CoinFamily;
1266
+ explorerUrl: string;
1267
+ accountExplorerUrl: string;
1268
+ chainId: number;
1269
+ nativeCoinOperationHashPrefix: string;
1270
+ walletFactoryAddress: string;
1271
+ batcherContractAddress: string;
1272
+ forwarderFactoryAddress: string;
1273
+ forwarderImplementationAddress: string;
1274
+ walletImplementationAddress: string;
1275
+ }
1276
+ declare class Kaia extends Mainnet implements EthereumNetwork {
1277
+ name: string;
1278
+ family: CoinFamily;
1279
+ explorerUrl: string;
1280
+ accountExplorerUrl: string;
1281
+ chainId: number;
1282
+ nativeCoinOperationHashPrefix: string;
1283
+ }
1284
+ declare class KaiaTestnet extends Testnet implements EthereumNetwork {
1285
+ name: string;
1286
+ family: CoinFamily;
1287
+ explorerUrl: string;
1288
+ accountExplorerUrl: string;
1289
+ chainId: number;
1290
+ nativeCoinOperationHashPrefix: string;
1291
+ walletFactoryAddress: string;
1292
+ batcherContractAddress: string;
1293
+ forwarderFactoryAddress: string;
1294
+ forwarderImplementationAddress: string;
1295
+ walletImplementationAddress: string;
1296
+ }
1297
+ declare class Irys extends Mainnet implements EthereumNetwork {
1298
+ name: string;
1299
+ family: CoinFamily;
1300
+ explorerUrl: string;
1301
+ accountExplorerUrl: string;
1302
+ chainId: number;
1303
+ nativeCoinOperationHashPrefix: string;
1304
+ }
1305
+ declare class IrysTestnet extends Testnet implements EthereumNetwork {
1306
+ name: string;
1307
+ family: CoinFamily;
1308
+ explorerUrl: string;
1309
+ accountExplorerUrl: string;
1310
+ chainId: number;
1311
+ nativeCoinOperationHashPrefix: string;
1312
+ walletFactoryAddress: string;
1313
+ batcherContractAddress: string;
1314
+ forwarderFactoryAddress: string;
1315
+ forwarderImplementationAddress: string;
1316
+ walletImplementationAddress: string;
1317
+ }
1318
+ declare class Og extends Mainnet implements EthereumNetwork {
1319
+ name: string;
1320
+ family: CoinFamily;
1321
+ explorerUrl: string;
1322
+ accountExplorerUrl: string;
1323
+ chainId: number;
1324
+ nativeCoinOperationHashPrefix: string;
1325
+ }
1326
+ declare class OgTestnet extends Testnet implements EthereumNetwork {
1327
+ name: string;
1328
+ family: CoinFamily;
1329
+ explorerUrl: string;
1330
+ accountExplorerUrl: string;
1331
+ chainId: number;
1332
+ nativeCoinOperationHashPrefix: string;
1333
+ }
1334
+ declare class Xdc extends Mainnet implements EthereumNetwork {
1335
+ name: string;
1336
+ family: CoinFamily;
1337
+ explorerUrl: string;
1338
+ accountExplorerUrl: string;
1339
+ chainId: number;
1340
+ nativeCoinOperationHashPrefix: string;
1341
+ batcherContractAddress: string;
1342
+ forwarderFactoryAddress: string;
1343
+ forwarderImplementationAddress: string;
1344
+ }
1345
+ declare class XdcTestnet extends Testnet implements EthereumNetwork {
1346
+ name: string;
1347
+ family: CoinFamily;
1348
+ explorerUrl: string;
1349
+ accountExplorerUrl: string;
1350
+ chainId: number;
1351
+ nativeCoinOperationHashPrefix: string;
1352
+ batcherContractAddress: string;
1353
+ forwarderFactoryAddress: string;
1354
+ forwarderImplementationAddress: string;
1355
+ }
1356
+ declare class Wemix extends Mainnet implements EthereumNetwork {
1357
+ name: string;
1358
+ family: CoinFamily;
1359
+ explorerUrl: string;
1360
+ accountExplorerUrl: string;
1361
+ chainId: number;
1362
+ nativeCoinOperationHashPrefix: string;
1363
+ batcherContractAddress: string;
1364
+ forwarderFactoryAddress: string;
1365
+ forwarderImplementationAddress: string;
1366
+ }
1367
+ declare class WemixTestnet extends Testnet implements EthereumNetwork {
1368
+ name: string;
1369
+ family: CoinFamily;
1370
+ explorerUrl: string;
1371
+ accountExplorerUrl: string;
1372
+ chainId: number;
1373
+ nativeCoinOperationHashPrefix: string;
1374
+ batcherContractAddress: string;
1375
+ forwarderFactoryAddress: string;
1376
+ forwarderImplementationAddress: string;
1377
+ }
1378
+ declare class MonadTestnet extends Testnet implements EthereumNetwork {
1379
+ name: string;
1380
+ family: CoinFamily;
1381
+ explorerUrl: string;
1382
+ accountExplorerUrl: string;
1383
+ chainId: number;
1384
+ nativeCoinOperationHashPrefix: string;
1385
+ walletFactoryAddress: string;
1386
+ batcherContractAddress: string;
1387
+ forwarderFactoryAddress: string;
1388
+ forwarderImplementationAddress: string;
1389
+ walletImplementationAddress: string;
1390
+ }
1391
+ declare class Monad extends Mainnet implements EthereumNetwork {
1392
+ name: string;
1393
+ family: CoinFamily;
1394
+ explorerUrl: string;
1395
+ chainId: number;
1396
+ nativeCoinOperationHashPrefix: string;
1397
+ walletImplementationAddress: string;
1398
+ batcherContractAddress: string;
1399
+ forwarderFactoryAddress: string;
1400
+ forwarderImplementationAddress: string;
1401
+ }
1402
+ declare class World extends Mainnet implements EthereumNetwork {
1403
+ name: string;
1404
+ family: CoinFamily;
1405
+ explorerUrl: string;
1406
+ accountExplorerUrl: string;
1407
+ chainId: number;
1408
+ nativeCoinOperationHashPrefix: string;
1409
+ walletImplementationAddress: string;
1410
+ batcherContractAddress: string;
1411
+ forwarderFactoryAddress: string;
1412
+ forwarderImplementationAddress: string;
1413
+ }
1414
+ declare class WorldTestnet extends Testnet implements EthereumNetwork {
1415
+ name: string;
1416
+ family: CoinFamily;
1417
+ explorerUrl: string;
1418
+ accountExplorerUrl: string;
1419
+ chainId: number;
1420
+ nativeCoinOperationHashPrefix: string;
1421
+ batcherContractAddress: string;
1422
+ forwarderFactoryAddress: string;
1423
+ forwarderImplementationAddress: string;
1424
+ walletImplementationAddress: string;
1425
+ }
1426
+ declare class Soneium extends Mainnet implements EthereumNetwork {
1427
+ name: string;
1428
+ family: CoinFamily;
1429
+ explorerUrl: string;
1430
+ accountExplorerUrl: string;
1431
+ chainId: number;
1432
+ nativeCoinOperationHashPrefix: string;
1433
+ walletImplementationAddress: string;
1434
+ walletFactoryAddress: string;
1435
+ batcherContractAddress: string;
1436
+ forwarderFactoryAddress: string;
1437
+ forwarderImplementationAddress: string;
1438
+ }
1439
+ declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
1440
+ name: string;
1441
+ family: CoinFamily;
1442
+ explorerUrl: string;
1443
+ accountExplorerUrl: string;
1444
+ chainId: number;
1445
+ nativeCoinOperationHashPrefix: string;
1446
+ walletFactoryAddress: string;
1447
+ batcherContractAddress: string;
1448
+ forwarderFactoryAddress: string;
1449
+ forwarderImplementationAddress: string;
1450
+ walletImplementationAddress: string;
1451
+ }
1452
+ declare class SeiEvm extends Mainnet implements EthereumNetwork {
1453
+ name: string;
1454
+ family: CoinFamily;
1455
+ explorerUrl: string;
1456
+ accountExplorerUrl: string;
1457
+ chainId: number;
1458
+ nativeCoinOperationHashPrefix: string;
1459
+ }
1460
+ declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
1461
+ name: string;
1462
+ family: CoinFamily;
1463
+ explorerUrl: string;
1464
+ accountExplorerUrl: string;
1465
+ chainId: number;
1466
+ nativeCoinOperationHashPrefix: string;
1467
+ walletFactoryAddress: string;
1468
+ batcherContractAddress: string;
1469
+ forwarderFactoryAddress: string;
1470
+ forwarderImplementationAddress: string;
1471
+ walletImplementationAddress: string;
1472
+ }
1473
+ declare class SomniaTestnet extends Testnet implements EthereumNetwork {
1474
+ name: string;
1475
+ family: CoinFamily;
1476
+ explorerUrl: string;
1477
+ accountExplorerUrl: string;
1478
+ chainId: number;
1479
+ nativeCoinOperationHashPrefix: string;
1480
+ walletFactoryAddress: string;
1481
+ batcherContractAddress: string;
1482
+ forwarderFactoryAddress: string;
1483
+ forwarderImplementationAddress: string;
1484
+ walletImplementationAddress: string;
1485
+ }
1486
+ declare class Somi extends Mainnet implements EthereumNetwork {
1487
+ name: string;
1488
+ family: CoinFamily;
1489
+ explorerUrl: string;
1490
+ chainId: number;
1491
+ nativeCoinOperationHashPrefix: string;
1492
+ walletImplementationAddress: string;
1493
+ walletFactoryAddress: string;
1494
+ forwarderImplementationAddress: string;
1495
+ forwarderFactoryAddress: string;
1496
+ batcherContractAddress: string;
1497
+ }
1498
+ export declare class FlareP extends Mainnet implements FlareNetwork {
1499
+ name: string;
1500
+ family: CoinFamily;
1501
+ explorerUrl: string;
1502
+ accountExplorerUrl: string;
1503
+ blockchainID: string;
1504
+ cChainBlockchainID: string;
1505
+ networkID: number;
1506
+ hrp: string;
1507
+ alias: string;
1508
+ vm: string;
1509
+ txFee: string;
1510
+ maxImportFee: string;
1511
+ createSubnetTx: string;
1512
+ createChainTx: string;
1513
+ creationTxFee: string;
1514
+ minConsumption: string;
1515
+ maxConsumption: string;
1516
+ maxSupply: string;
1517
+ minStake: string;
1518
+ minStakeDuration: string;
1519
+ maxStakeDuration: string;
1520
+ minDelegationStake: string;
1521
+ minDelegationFee: string;
1522
+ }
1523
+ export declare class FlarePTestnet extends Testnet implements FlareNetwork {
1524
+ name: string;
1525
+ family: CoinFamily;
1526
+ explorerUrl: string;
1527
+ accountExplorerUrl: string;
1528
+ blockchainID: string;
1529
+ cChainBlockchainID: string;
1530
+ networkID: number;
1531
+ hrp: string;
1532
+ alias: string;
1533
+ vm: string;
1534
+ txFee: string;
1535
+ maxImportFee: string;
1536
+ createSubnetTx: string;
1537
+ createChainTx: string;
1538
+ creationTxFee: string;
1539
+ minConsumption: string;
1540
+ maxConsumption: string;
1541
+ maxSupply: string;
1542
+ minStake: string;
1543
+ minStakeDuration: string;
1544
+ maxStakeDuration: string;
1545
+ minDelegationStake: string;
1546
+ minDelegationFee: string;
1547
+ }
1548
+ export declare class Flare extends Mainnet implements FlareNetwork, EthereumNetwork {
1549
+ name: string;
1550
+ family: CoinFamily;
1551
+ explorerUrl: string;
1552
+ accountExplorerUrl: string;
1553
+ chainId: number;
1554
+ nativeCoinOperationHashPrefix: string;
1555
+ batcherContractAddress: string;
1556
+ forwarderFactoryAddress: string;
1557
+ forwarderImplementationAddress: string;
1558
+ }
1559
+ export declare class FlareTestnet extends Testnet implements FlareNetwork, EthereumNetwork {
1560
+ name: string;
1561
+ family: CoinFamily;
1562
+ explorerUrl: string;
1563
+ accountExplorerUrl: string;
1564
+ chainId: number;
1565
+ nativeCoinOperationHashPrefix: string;
1566
+ batcherContractAddress: string;
1567
+ forwarderFactoryAddress: string;
1568
+ forwarderImplementationAddress: string;
1569
+ }
1570
+ declare class Songbird extends Mainnet implements EthereumNetwork {
1571
+ name: string;
1572
+ family: CoinFamily;
1573
+ explorerUrl: string;
1574
+ accountExplorerUrl: string;
1575
+ chainId: number;
1576
+ nativeCoinOperationHashPrefix: string;
1577
+ batcherContractAddress: string;
1578
+ forwarderFactoryAddress: string;
1579
+ forwarderImplementationAddress: string;
1580
+ }
1581
+ declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
1582
+ name: string;
1583
+ family: CoinFamily;
1584
+ explorerUrl: string;
1585
+ accountExplorerUrl: string;
1586
+ chainId: number;
1587
+ nativeCoinOperationHashPrefix: string;
1588
+ batcherContractAddress: string;
1589
+ forwarderFactoryAddress: string;
1590
+ forwarderImplementationAddress: string;
1591
+ }
1592
+ declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
1593
+ name: string;
1594
+ family: CoinFamily;
1595
+ explorerUrl: string;
1596
+ accountExplorerUrl: string;
1597
+ chainId: number;
1598
+ nativeCoinOperationHashPrefix: string;
1599
+ tokenOperationHashPrefix: string;
1600
+ forwarderFactoryAddress: string;
1601
+ forwarderImplementationAddress: string;
1602
+ walletFactoryAddress: string;
1603
+ walletImplementationAddress: string;
1604
+ }
1605
+ declare class BaseChain extends Mainnet implements EthereumNetwork {
1606
+ name: string;
1607
+ family: CoinFamily;
1608
+ explorerUrl: string;
1609
+ accountExplorerUrl: string;
1610
+ chainId: number;
1611
+ nativeCoinOperationHashPrefix: string;
1612
+ tokenOperationHashPrefix: string;
1613
+ forwarderFactoryAddress: string;
1614
+ forwarderImplementationAddress: string;
1615
+ walletFactoryAddress: string;
1616
+ walletImplementationAddress: string;
1617
+ }
1618
+ declare class Polymesh extends Mainnet implements AccountNetwork {
1619
+ name: string;
1620
+ family: CoinFamily;
1621
+ explorerUrl: string;
1622
+ specName: string;
1623
+ genesisHash: string;
1624
+ specVersion: number;
1625
+ chainName: string;
1626
+ txVersion: number;
1627
+ }
1628
+ declare class PolymeshTestnet extends Testnet implements AccountNetwork {
1629
+ name: string;
1630
+ family: CoinFamily;
1631
+ explorerUrl: string;
1632
+ specName: SubstrateSpecNameType;
1633
+ genesisHash: string;
1634
+ specVersion: number;
1635
+ chainName: string;
1636
+ txVersion: number;
1637
+ }
1638
+ declare class Vet extends Mainnet implements EthereumNetwork {
1639
+ name: string;
1640
+ family: CoinFamily;
1641
+ explorerUrl: string;
1642
+ accountExplorerUrl: string;
1643
+ chainId: number;
1644
+ forwarderFactoryAddress: string;
1645
+ forwarderImplementationAddress: string;
1646
+ }
1647
+ declare class VetTestnet extends Testnet implements EthereumNetwork {
1648
+ name: string;
1649
+ family: CoinFamily;
1650
+ explorerUrl: string;
1651
+ accountExplorerUrl: string;
1652
+ chainId: number;
1653
+ forwarderFactoryAddress: string;
1654
+ forwarderImplementationAddress: string;
1655
+ }
1656
+ declare class Iota extends Mainnet implements AccountNetwork {
1657
+ name: string;
1658
+ family: CoinFamily;
1659
+ explorerUrl: string;
1660
+ }
1661
+ declare class IotaTestnet extends Testnet implements AccountNetwork {
1662
+ name: string;
1663
+ family: CoinFamily;
1664
+ explorerUrl: string;
672
1665
  }
673
1666
  export declare const Networks: {
674
1667
  main: {
675
1668
  ada: Readonly<Ada>;
676
1669
  algorand: Readonly<Algorand>;
1670
+ apechain: Readonly<ApeChain>;
1671
+ apt: Readonly<Apt>;
1672
+ arbitrum: Readonly<Arbitrum>;
1673
+ asi: Readonly<Asi>;
677
1674
  atom: Readonly<Atom>;
678
1675
  avalancheC: Readonly<AvalancheC>;
679
1676
  avalancheP: Readonly<AvalancheP>;
1677
+ baby: Readonly<Baby>;
1678
+ basechain: Readonly<BaseChain>;
680
1679
  bitcoin: Readonly<Bitcoin>;
681
1680
  bitcoinCash: Readonly<BitcoinCash>;
682
1681
  bitcoinGold: Readonly<BitcoinGold>;
683
1682
  bitcoinSV: Readonly<BitcoinSV>;
1683
+ bera: Readonly<Berachain>;
684
1684
  bld: Readonly<Bld>;
685
1685
  bsc: Readonly<BinanceSmartChain>;
686
1686
  casper: Readonly<Casper>;
687
1687
  celo: Readonly<Celo>;
1688
+ coredao: Readonly<Coredao>;
1689
+ coreum: Readonly<Coreum>;
1690
+ cronos: Readonly<Cronos>;
688
1691
  dash: Readonly<Dash>;
689
1692
  dogecoin: Readonly<Dogecoin>;
690
1693
  dot: Readonly<Polkadot>;
@@ -695,73 +1698,160 @@ export declare const Networks: {
695
1698
  ethereumClassic: Readonly<EthereumClassic>;
696
1699
  ethereumW: Readonly<EthereumW>;
697
1700
  fiat: Readonly<Fiat>;
1701
+ fetchai: Readonly<FetchAi>;
1702
+ flr: Readonly<Flare>;
1703
+ flrP: Readonly<FlareP>;
698
1704
  hash: Readonly<Hash>;
699
1705
  hedera: Readonly<Hedera>;
1706
+ icp: Readonly<Icp>;
1707
+ ip: Readonly<IP>;
1708
+ initia: Readonly<Initia>;
1709
+ iota: Readonly<Iota>;
700
1710
  injective: Readonly<Injective>;
1711
+ irys: Readonly<Irys>;
1712
+ islm: Readonly<Islm>;
1713
+ kaia: Readonly<Kaia>;
1714
+ kava: Readonly<Kava>;
1715
+ lnbtc: Readonly<LightningBitcoin>;
701
1716
  litecoin: Readonly<Litecoin>;
1717
+ mon: Readonly<Monad>;
1718
+ mantra: Readonly<Mantra>;
702
1719
  polygon: Readonly<Polygon>;
1720
+ polyx: Readonly<Polymesh>;
1721
+ phrs: Readonly<Pharos>;
1722
+ ctc: Readonly<Creditcoin>;
1723
+ hypeevm: Readonly<HypeEVM>;
1724
+ lineaeth: Readonly<LineaETH>;
1725
+ oas: Readonly<Oas>;
1726
+ og: Readonly<Og>;
703
1727
  ofc: Readonly<Ofc>;
1728
+ optimism: Readonly<Optimism>;
704
1729
  osmo: Readonly<Osmo>;
705
1730
  rbtc: Readonly<Rbtc>;
1731
+ rune: Readonly<Rune>;
706
1732
  stellar: Readonly<Stellar>;
707
1733
  sei: Readonly<Sei>;
1734
+ seievm: Readonly<SeiEvm>;
1735
+ sgb: Readonly<Songbird>;
708
1736
  sol: Readonly<Sol>;
1737
+ sonic: Readonly<Sonic>;
709
1738
  sui: Readonly<Sui>;
710
1739
  near: Readonly<Near>;
711
1740
  stx: Readonly<Stx>;
1741
+ somi: Readonly<Somi>;
1742
+ soneium: Readonly<Soneium>;
712
1743
  susd: Readonly<SUSD>;
1744
+ tao: Readonly<Bittensor>;
713
1745
  tia: Readonly<Tia>;
1746
+ ton: Readonly<Ton>;
714
1747
  trx: Readonly<Trx>;
1748
+ vet: Readonly<Vet>;
1749
+ wemix: Readonly<Wemix>;
1750
+ world: Readonly<World>;
1751
+ xdc: Readonly<Xdc>;
1752
+ xpl: Readonly<Plasma>;
715
1753
  xrp: Readonly<Xrp>;
716
1754
  xtz: Readonly<Xtz>;
717
1755
  zCash: Readonly<ZCash>;
718
1756
  zeta: Readonly<Zeta>;
1757
+ zkSync: Readonly<ZkSync>;
719
1758
  };
720
1759
  test: {
721
1760
  ada: Readonly<AdaTestnet>;
722
1761
  algorand: Readonly<AlgorandTestnet>;
1762
+ apechain: Readonly<ApeChainTestnet>;
1763
+ apt: Readonly<AptTestnet>;
1764
+ arbitrum: Readonly<ArbitrumTestnet>;
1765
+ asi: Readonly<AsiTestnet>;
723
1766
  atom: Readonly<AtomTestnet>;
724
1767
  avalancheC: Readonly<AvalancheCTestnet>;
725
1768
  avalancheP: Readonly<AvalanchePTestnet>;
1769
+ baby: Readonly<BabyTestnet>;
1770
+ basechain: Readonly<BaseChainTestnet>;
726
1771
  bitcoin: Readonly<BitcoinTestnet>;
1772
+ bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
1773
+ bitcoinTestnet4: Readonly<BitcoinTestnet4>;
1774
+ bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
727
1775
  bitcoinCash: Readonly<BitcoinCashTestnet>;
728
1776
  bitcoinGold: Readonly<BitcoinGoldTestnet>;
729
1777
  bitcoinSV: Readonly<BitcoinSVTestnet>;
1778
+ bera: Readonly<BerachainTestnet>;
730
1779
  bld: Readonly<BldTestnet>;
731
1780
  bsc: Readonly<BinanceSmartChainTestnet>;
732
1781
  casper: Readonly<CasperTestnet>;
1782
+ coredao: Readonly<CoredaoTestnet>;
733
1783
  celo: Readonly<CeloTestnet>;
1784
+ cronos: Readonly<CronosTestnet>;
734
1785
  dash: Readonly<DashTestnet>;
735
1786
  dogecoin: Readonly<DogecoinTestnet>;
736
1787
  dot: Readonly<PolkadotTestnet>;
737
1788
  eCash: Readonly<ECashTestnet>;
738
1789
  eos: Readonly<EosTestnet>;
739
1790
  fiat: Readonly<FiatTestnet>;
1791
+ fetchai: Readonly<FetchAiTestnet>;
1792
+ flr: Readonly<FlareTestnet>;
1793
+ flrP: Readonly<FlarePTestnet>;
1794
+ mon: Readonly<MonadTestnet>;
740
1795
  pyrmont: Readonly<Pyrmont>;
741
1796
  ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
742
1797
  hash: Readonly<HashTestnet>;
743
1798
  hedera: Readonly<HederaTestnet>;
1799
+ icp: Readonly<IcpTestnet>;
1800
+ ip: Readonly<IPTestnet>;
1801
+ initia: Readonly<InitiaTestnet>;
744
1802
  injective: Readonly<InjectiveTestnet>;
1803
+ iota: Readonly<IotaTestnet>;
1804
+ irys: Readonly<IrysTestnet>;
1805
+ islm: Readonly<IslmTestnet>;
1806
+ kava: Readonly<KavaTestnet>;
745
1807
  kovan: Readonly<Kovan>;
746
1808
  goerli: Readonly<Goerli>;
1809
+ holesky: Readonly<Holesky>;
1810
+ hoodi: Readonly<Hoodi>;
1811
+ lnbtc: Readonly<LightningBitcoinTestnet>;
747
1812
  litecoin: Readonly<LitecoinTestnet>;
1813
+ mantra: Readonly<MantraTestnet>;
748
1814
  polygon: Readonly<PolygonTestnet>;
1815
+ polyx: Readonly<PolymeshTestnet>;
1816
+ phrs: Readonly<PharosTestnet>;
1817
+ ctc: Readonly<CreditcoinTestnet>;
1818
+ hypeevm: Readonly<HypeEVMTestnet>;
1819
+ lineaeth: Readonly<LineaETHTestnet>;
1820
+ oas: Readonly<OasTestnet>;
1821
+ og: Readonly<OgTestnet>;
749
1822
  ofc: Readonly<OfcTestnet>;
1823
+ optimism: Readonly<OptimismTestnet>;
750
1824
  osmo: Readonly<OsmoTestnet>;
751
1825
  rbtc: Readonly<RbtcTestnet>;
1826
+ rune: Readonly<RuneTestNet>;
1827
+ sgb: Readonly<SongbirdTestnet>;
752
1828
  stellar: Readonly<StellarTestnet>;
753
1829
  sei: Readonly<SeiTestnet>;
1830
+ seievm: Readonly<SeiEvmTestnet>;
754
1831
  sol: Readonly<SolTestnet>;
755
1832
  sui: Readonly<SuiTestnet>;
756
1833
  near: Readonly<NearTestnet>;
757
1834
  stx: Readonly<StxTestnet>;
1835
+ stt: Readonly<SomniaTestnet>;
1836
+ soneium: Readonly<SoneiumTestnet>;
1837
+ sonic: Readonly<SonicTestnet>;
1838
+ kaia: Readonly<KaiaTestnet>;
758
1839
  susd: Readonly<SUSDTestnet>;
1840
+ coreum: Readonly<CoreumTestnet>;
1841
+ tao: Readonly<BittensorTestnet>;
759
1842
  tia: Readonly<TiaTestnet>;
1843
+ ton: Readonly<TonTestnet>;
760
1844
  trx: Readonly<TrxTestnet>;
1845
+ vet: Readonly<VetTestnet>;
1846
+ wemix: Readonly<WemixTestnet>;
1847
+ world: Readonly<WorldTestnet>;
1848
+ xdc: Readonly<XdcTestnet>;
1849
+ xpl: Readonly<PlasmaTestnet>;
761
1850
  xrp: Readonly<XrpTestnet>;
762
1851
  xtz: Readonly<XtzTestnet>;
763
1852
  zCash: Readonly<ZCashTestnet>;
764
1853
  zeta: Readonly<ZetaTestnet>;
1854
+ zkSync: Readonly<ZkSyncTestnet>;
765
1855
  };
766
1856
  };
767
1857
  export {};