@bitgo-beta/statics 15.1.1-beta.90 → 15.1.1-beta.900
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.
- package/.mocharc.js +1 -1
- package/CHANGELOG.md +2805 -0
- package/dist/src/account.d.ts +490 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +821 -127
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +6 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +7 -3
- package/dist/src/base.d.ts +1390 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1442 -50
- package/dist/src/coinFeatures.d.ts +83 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +518 -0
- package/dist/src/coins/avaxTokens.d.ts +2 -0
- package/dist/src/coins/avaxTokens.d.ts.map +1 -0
- package/dist/src/coins/avaxTokens.js +96 -0
- package/dist/src/coins/bscTokens.d.ts +2 -0
- package/dist/src/coins/bscTokens.d.ts.map +1 -0
- package/dist/src/coins/bscTokens.js +139 -0
- package/dist/src/coins/erc20Coins.d.ts +2 -0
- package/dist/src/coins/erc20Coins.d.ts.map +1 -0
- package/dist/src/coins/erc20Coins.js +1388 -0
- package/dist/src/coins/ofcCoins.d.ts +2 -0
- package/dist/src/coins/ofcCoins.d.ts.map +1 -0
- package/dist/src/coins/ofcCoins.js +458 -0
- package/dist/src/coins/ofcErc20Coins.d.ts +3 -0
- package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
- package/dist/src/coins/ofcErc20Coins.js +1305 -0
- package/dist/src/coins/polygonTokens.d.ts +2 -0
- package/dist/src/coins/polygonTokens.d.ts.map +1 -0
- package/dist/src/coins/polygonTokens.js +137 -0
- package/dist/src/coins/sip10Tokens.d.ts +2 -0
- package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
- package/dist/src/coins/sip10Tokens.js +25 -0
- package/dist/src/coins/solTokens.d.ts +2 -0
- package/dist/src/coins/solTokens.d.ts.map +1 -0
- package/dist/src/coins/solTokens.js +334 -0
- package/dist/src/coins.d.ts +10 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +625 -1512
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/constants.d.ts.map +1 -1
- package/dist/src/constants.js +3 -2
- package/dist/src/gatekeep.d.ts +2 -0
- package/dist/src/gatekeep.d.ts.map +1 -0
- package/dist/src/gatekeep.js +1831 -0
- package/dist/src/index.d.ts +4 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +21 -3
- package/dist/src/lightning.d.ts +43 -0
- package/dist/src/lightning.d.ts.map +1 -0
- package/dist/src/lightning.js +60 -0
- package/dist/src/map.d.ts +4 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +93 -19
- package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
- package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
- package/dist/src/networkFeatureMapForTokens.js +29 -0
- package/dist/src/networks.d.ts +648 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +876 -44
- package/dist/src/ofc.d.ts +349 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +724 -14
- package/dist/src/tokenConfig.d.ts +144 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +340 -115
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +78 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/src/networks.d.ts
CHANGED
|
@@ -12,6 +12,14 @@ export declare abstract class BaseNetwork {
|
|
|
12
12
|
export interface UtxoNetwork extends BaseNetwork {
|
|
13
13
|
utxolibName: string;
|
|
14
14
|
}
|
|
15
|
+
export interface LightningNetwork extends UtxoNetwork {
|
|
16
|
+
/**
|
|
17
|
+
* The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
18
|
+
* between the user's extended private key and the Lightning service. This key facilitates secure communication
|
|
19
|
+
* by enabling the creation of a shared secret for encryption and decryption of data.
|
|
20
|
+
*/
|
|
21
|
+
lightningServicePubKey: string;
|
|
22
|
+
}
|
|
15
23
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
24
|
utxolibName: string;
|
|
17
25
|
poolDeposit: number;
|
|
@@ -40,6 +48,7 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
48
|
readonly minDelegationFee: string;
|
|
41
49
|
readonly avaxAssetID: string;
|
|
42
50
|
readonly txFee: string;
|
|
51
|
+
readonly maxImportFee: string;
|
|
43
52
|
}
|
|
44
53
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
54
|
readonly accountExplorerUrl?: string;
|
|
@@ -48,7 +57,8 @@ export interface AccountNetwork extends BaseNetwork {
|
|
|
48
57
|
/**
|
|
49
58
|
* Specification name type of the chain. Used in setting up the registry
|
|
50
59
|
*/
|
|
51
|
-
export
|
|
60
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
61
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet';
|
|
52
62
|
export interface DotNetwork extends AccountNetwork {
|
|
53
63
|
readonly specName: PolkadotSpecNameType;
|
|
54
64
|
readonly genesisHash: string;
|
|
@@ -61,6 +71,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
71
|
readonly batcherContractAddress?: string;
|
|
62
72
|
readonly forwarderFactoryAddress?: string;
|
|
63
73
|
readonly forwarderImplementationAddress?: string;
|
|
74
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
75
|
+
readonly tokenOperationHashPrefix?: string;
|
|
64
76
|
}
|
|
65
77
|
export interface TronNetwork extends AccountNetwork {
|
|
66
78
|
maxFeeLimit: string;
|
|
@@ -110,6 +122,60 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
122
|
poolDeposit: number;
|
|
111
123
|
stakeKeyDeposit: number;
|
|
112
124
|
}
|
|
125
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
126
|
+
name: string;
|
|
127
|
+
family: CoinFamily;
|
|
128
|
+
explorerUrl: string;
|
|
129
|
+
accountExplorerUrl: string;
|
|
130
|
+
blockExplorerUrl: string;
|
|
131
|
+
}
|
|
132
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
133
|
+
name: string;
|
|
134
|
+
family: CoinFamily;
|
|
135
|
+
explorerUrl: string;
|
|
136
|
+
accountExplorerUrl: string;
|
|
137
|
+
blockExplorerUrl: string;
|
|
138
|
+
}
|
|
139
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
140
|
+
name: string;
|
|
141
|
+
family: CoinFamily;
|
|
142
|
+
explorerUrl: string;
|
|
143
|
+
accountExplorerUrl: string;
|
|
144
|
+
}
|
|
145
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
146
|
+
name: string;
|
|
147
|
+
family: CoinFamily;
|
|
148
|
+
explorerUrl: string;
|
|
149
|
+
accountExplorerUrl: string;
|
|
150
|
+
}
|
|
151
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
152
|
+
name: string;
|
|
153
|
+
family: CoinFamily;
|
|
154
|
+
explorerUrl: string;
|
|
155
|
+
accountExplorerUrl: string;
|
|
156
|
+
chainId: number;
|
|
157
|
+
nativeCoinOperationHashPrefix: string;
|
|
158
|
+
tokenOperationHashPrefix: string;
|
|
159
|
+
forwarderFactoryAddress: string;
|
|
160
|
+
forwarderImplementationAddress: string;
|
|
161
|
+
walletFactoryAddress: string;
|
|
162
|
+
walletImplementationAddress: string;
|
|
163
|
+
batcherContractAddress: string;
|
|
164
|
+
}
|
|
165
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
166
|
+
name: string;
|
|
167
|
+
family: CoinFamily;
|
|
168
|
+
explorerUrl: string;
|
|
169
|
+
accountExplorerUrl: string;
|
|
170
|
+
chainId: number;
|
|
171
|
+
nativeCoinOperationHashPrefix: string;
|
|
172
|
+
tokenOperationHashPrefix: string;
|
|
173
|
+
forwarderFactoryAddress: string;
|
|
174
|
+
forwarderImplementationAddress: string;
|
|
175
|
+
walletFactoryAddress: string;
|
|
176
|
+
walletImplementationAddress: string;
|
|
177
|
+
batcherContractAddress: string;
|
|
178
|
+
}
|
|
113
179
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
180
|
name: string;
|
|
115
181
|
family: CoinFamily;
|
|
@@ -137,6 +203,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
203
|
alias: string;
|
|
138
204
|
vm: string;
|
|
139
205
|
txFee: string;
|
|
206
|
+
maxImportFee: string;
|
|
140
207
|
createSubnetTx: string;
|
|
141
208
|
createChainTx: string;
|
|
142
209
|
creationTxFee: string;
|
|
@@ -162,6 +229,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
229
|
hrp: string;
|
|
163
230
|
vm: string;
|
|
164
231
|
txFee: string;
|
|
232
|
+
maxImportFee: string;
|
|
165
233
|
createSubnetTx: string;
|
|
166
234
|
createChainTx: string;
|
|
167
235
|
creationTxFee: string;
|
|
@@ -180,6 +248,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
248
|
explorerUrl: string;
|
|
181
249
|
accountExplorerUrl: string;
|
|
182
250
|
chainId: number;
|
|
251
|
+
nativeCoinOperationHashPrefix: string;
|
|
252
|
+
tokenOperationHashPrefix: string;
|
|
253
|
+
batcherContractAddress: string;
|
|
183
254
|
}
|
|
184
255
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
256
|
name: string;
|
|
@@ -187,6 +258,23 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
258
|
explorerUrl: string;
|
|
188
259
|
accountExplorerUrl: string;
|
|
189
260
|
chainId: number;
|
|
261
|
+
nativeCoinOperationHashPrefix: string;
|
|
262
|
+
tokenOperationHashPrefix: string;
|
|
263
|
+
batcherContractAddress: string;
|
|
264
|
+
}
|
|
265
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
266
|
+
name: string;
|
|
267
|
+
family: CoinFamily;
|
|
268
|
+
utxolibName: string;
|
|
269
|
+
explorerUrl: string;
|
|
270
|
+
lightningServicePubKey: string;
|
|
271
|
+
}
|
|
272
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
273
|
+
name: string;
|
|
274
|
+
family: CoinFamily;
|
|
275
|
+
utxolibName: string;
|
|
276
|
+
explorerUrl: string;
|
|
277
|
+
lightningServicePubKey: string;
|
|
190
278
|
}
|
|
191
279
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
280
|
name: string;
|
|
@@ -200,6 +288,24 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
200
288
|
utxolibName: string;
|
|
201
289
|
explorerUrl: string;
|
|
202
290
|
}
|
|
291
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
292
|
+
name: string;
|
|
293
|
+
family: CoinFamily;
|
|
294
|
+
utxolibName: string;
|
|
295
|
+
explorerUrl: string;
|
|
296
|
+
}
|
|
297
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
298
|
+
name: string;
|
|
299
|
+
family: CoinFamily;
|
|
300
|
+
utxolibName: string;
|
|
301
|
+
explorerUrl: string;
|
|
302
|
+
}
|
|
303
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
304
|
+
name: string;
|
|
305
|
+
family: CoinFamily;
|
|
306
|
+
utxolibName: string;
|
|
307
|
+
explorerUrl: string;
|
|
308
|
+
}
|
|
203
309
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
310
|
name: string;
|
|
205
311
|
family: CoinFamily;
|
|
@@ -298,6 +404,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
298
404
|
explorerUrl: string;
|
|
299
405
|
accountExplorerUrl: string;
|
|
300
406
|
chainId: number;
|
|
407
|
+
nativeCoinOperationHashPrefix: string;
|
|
408
|
+
tokenOperationHashPrefix: string;
|
|
301
409
|
}
|
|
302
410
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
303
411
|
name: string;
|
|
@@ -305,6 +413,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
305
413
|
explorerUrl: string;
|
|
306
414
|
accountExplorerUrl: string;
|
|
307
415
|
chainId: number;
|
|
416
|
+
nativeCoinOperationHashPrefix: string;
|
|
417
|
+
tokenOperationHashPrefix: string;
|
|
308
418
|
}
|
|
309
419
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
310
420
|
name: string;
|
|
@@ -328,6 +438,8 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
328
438
|
batcherContractAddress: string;
|
|
329
439
|
forwarderFactoryAddress: string;
|
|
330
440
|
forwarderImplementationAddress: string;
|
|
441
|
+
nativeCoinOperationHashPrefix: string;
|
|
442
|
+
tokenOperationHashPrefix: string;
|
|
331
443
|
}
|
|
332
444
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
333
445
|
name: string;
|
|
@@ -344,6 +456,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
344
456
|
batcherContractAddress: string;
|
|
345
457
|
forwarderFactoryAddress: string;
|
|
346
458
|
forwarderImplementationAddress: string;
|
|
459
|
+
nativeCoinOperationHashPrefix: string;
|
|
460
|
+
tokenOperationHashPrefix: string;
|
|
347
461
|
}
|
|
348
462
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
349
463
|
name: string;
|
|
@@ -360,6 +474,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
360
474
|
batcherContractAddress: string;
|
|
361
475
|
forwarderFactoryAddress: string;
|
|
362
476
|
forwarderImplementationAddress: string;
|
|
477
|
+
nativeCoinOperationHashPrefix: string;
|
|
478
|
+
tokenOperationHashPrefix: string;
|
|
363
479
|
}
|
|
364
480
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
365
481
|
name: string;
|
|
@@ -371,6 +487,21 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
371
487
|
batcherContractAddress: string;
|
|
372
488
|
forwarderFactoryAddress: string;
|
|
373
489
|
forwarderImplementationAddress: string;
|
|
490
|
+
nativeCoinOperationHashPrefix: string;
|
|
491
|
+
tokenOperationHashPrefix: string;
|
|
492
|
+
}
|
|
493
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
494
|
+
name: string;
|
|
495
|
+
family: CoinFamily;
|
|
496
|
+
explorerUrl: string;
|
|
497
|
+
accountExplorerUrl: string;
|
|
498
|
+
blockExplorerUrl: string;
|
|
499
|
+
chainId: number;
|
|
500
|
+
batcherContractAddress: string;
|
|
501
|
+
forwarderFactoryAddress: string;
|
|
502
|
+
forwarderImplementationAddress: string;
|
|
503
|
+
nativeCoinOperationHashPrefix: string;
|
|
504
|
+
tokenOperationHashPrefix: string;
|
|
374
505
|
}
|
|
375
506
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
507
|
name: string;
|
|
@@ -378,6 +509,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
509
|
explorerUrl: string;
|
|
379
510
|
accountExplorerUrl: string;
|
|
380
511
|
chainId: number;
|
|
512
|
+
nativeCoinOperationHashPrefix: string;
|
|
513
|
+
tokenOperationHashPrefix: string;
|
|
381
514
|
}
|
|
382
515
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
516
|
name: string;
|
|
@@ -385,6 +518,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
518
|
explorerUrl: string;
|
|
386
519
|
accountExplorerUrl: string;
|
|
387
520
|
chainId: number;
|
|
521
|
+
nativeCoinOperationHashPrefix: string;
|
|
522
|
+
tokenOperationHashPrefix: string;
|
|
388
523
|
}
|
|
389
524
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
525
|
name: string;
|
|
@@ -434,6 +569,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
569
|
explorerUrl: string;
|
|
435
570
|
accountExplorerUrl: string;
|
|
436
571
|
chainId: number;
|
|
572
|
+
nativeCoinOperationHashPrefix: string;
|
|
573
|
+
tokenOperationHashPrefix: string;
|
|
437
574
|
}
|
|
438
575
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
576
|
name: string;
|
|
@@ -441,6 +578,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
578
|
explorerUrl: string;
|
|
442
579
|
accountExplorerUrl: string;
|
|
443
580
|
chainId: number;
|
|
581
|
+
nativeCoinOperationHashPrefix: string;
|
|
582
|
+
tokenOperationHashPrefix: string;
|
|
444
583
|
}
|
|
445
584
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
585
|
name: string;
|
|
@@ -552,6 +691,106 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
552
691
|
family: CoinFamily;
|
|
553
692
|
explorerUrl: string;
|
|
554
693
|
}
|
|
694
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
695
|
+
name: string;
|
|
696
|
+
family: CoinFamily;
|
|
697
|
+
explorerUrl: string;
|
|
698
|
+
}
|
|
699
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
700
|
+
name: string;
|
|
701
|
+
family: CoinFamily;
|
|
702
|
+
explorerUrl: string;
|
|
703
|
+
}
|
|
704
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
705
|
+
name: string;
|
|
706
|
+
family: CoinFamily;
|
|
707
|
+
explorerUrl: string;
|
|
708
|
+
}
|
|
709
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
710
|
+
name: string;
|
|
711
|
+
family: CoinFamily;
|
|
712
|
+
explorerUrl: string;
|
|
713
|
+
}
|
|
714
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
715
|
+
name: string;
|
|
716
|
+
family: CoinFamily;
|
|
717
|
+
explorerUrl: string;
|
|
718
|
+
}
|
|
719
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
720
|
+
name: string;
|
|
721
|
+
family: CoinFamily;
|
|
722
|
+
explorerUrl: string;
|
|
723
|
+
}
|
|
724
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
725
|
+
name: string;
|
|
726
|
+
family: CoinFamily;
|
|
727
|
+
explorerUrl: string;
|
|
728
|
+
}
|
|
729
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
730
|
+
name: string;
|
|
731
|
+
family: CoinFamily;
|
|
732
|
+
explorerUrl: string;
|
|
733
|
+
}
|
|
734
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
735
|
+
name: string;
|
|
736
|
+
family: CoinFamily;
|
|
737
|
+
explorerUrl: string;
|
|
738
|
+
}
|
|
739
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
740
|
+
name: string;
|
|
741
|
+
family: CoinFamily;
|
|
742
|
+
explorerUrl: string;
|
|
743
|
+
}
|
|
744
|
+
declare class Mantra extends Mainnet implements AccountNetwork {
|
|
745
|
+
name: string;
|
|
746
|
+
family: CoinFamily;
|
|
747
|
+
explorerUrl: string;
|
|
748
|
+
}
|
|
749
|
+
declare class MantraTestnet extends Testnet implements AccountNetwork {
|
|
750
|
+
name: string;
|
|
751
|
+
family: CoinFamily;
|
|
752
|
+
explorerUrl: string;
|
|
753
|
+
}
|
|
754
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
755
|
+
name: string;
|
|
756
|
+
family: CoinFamily;
|
|
757
|
+
explorerUrl: string;
|
|
758
|
+
}
|
|
759
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
760
|
+
name: string;
|
|
761
|
+
family: CoinFamily;
|
|
762
|
+
explorerUrl: string;
|
|
763
|
+
}
|
|
764
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
765
|
+
name: string;
|
|
766
|
+
family: CoinFamily;
|
|
767
|
+
explorerUrl: string;
|
|
768
|
+
}
|
|
769
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
770
|
+
name: string;
|
|
771
|
+
family: CoinFamily;
|
|
772
|
+
explorerUrl: string;
|
|
773
|
+
}
|
|
774
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
775
|
+
name: string;
|
|
776
|
+
family: CoinFamily;
|
|
777
|
+
explorerUrl: string;
|
|
778
|
+
}
|
|
779
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
780
|
+
name: string;
|
|
781
|
+
family: CoinFamily;
|
|
782
|
+
explorerUrl: string;
|
|
783
|
+
}
|
|
784
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
785
|
+
name: string;
|
|
786
|
+
family: CoinFamily;
|
|
787
|
+
explorerUrl: string;
|
|
788
|
+
}
|
|
789
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
790
|
+
name: string;
|
|
791
|
+
family: CoinFamily;
|
|
792
|
+
explorerUrl: string;
|
|
793
|
+
}
|
|
555
794
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
556
795
|
name: string;
|
|
557
796
|
family: CoinFamily;
|
|
@@ -586,9 +825,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
586
825
|
family: CoinFamily;
|
|
587
826
|
explorerUrl: undefined;
|
|
588
827
|
}
|
|
828
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
829
|
+
name: string;
|
|
830
|
+
family: CoinFamily;
|
|
831
|
+
explorerUrl: string;
|
|
832
|
+
}
|
|
833
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
834
|
+
name: string;
|
|
835
|
+
family: CoinFamily;
|
|
836
|
+
explorerUrl: string;
|
|
837
|
+
specName: SubstrateSpecNameType;
|
|
838
|
+
genesisHash: string;
|
|
839
|
+
specVersion: number;
|
|
840
|
+
chainName: string;
|
|
841
|
+
txVersion: number;
|
|
842
|
+
}
|
|
589
843
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
590
844
|
name: string;
|
|
591
845
|
family: CoinFamily;
|
|
846
|
+
accountExplorerUrl: string;
|
|
592
847
|
explorerUrl: string;
|
|
593
848
|
maxFeeLimit: string;
|
|
594
849
|
contractCallFeeLimit: string;
|
|
@@ -596,6 +851,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
596
851
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
597
852
|
name: string;
|
|
598
853
|
family: CoinFamily;
|
|
854
|
+
accountExplorerUrl: string;
|
|
599
855
|
explorerUrl: string;
|
|
600
856
|
maxFeeLimit: string;
|
|
601
857
|
contractCallFeeLimit: string;
|
|
@@ -614,11 +870,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
614
870
|
name: string;
|
|
615
871
|
family: CoinFamily;
|
|
616
872
|
explorerUrl: string;
|
|
873
|
+
accountExplorerUrl: string;
|
|
617
874
|
}
|
|
618
875
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
619
876
|
name: string;
|
|
620
877
|
family: CoinFamily;
|
|
621
878
|
explorerUrl: string;
|
|
879
|
+
accountExplorerUrl: string;
|
|
622
880
|
}
|
|
623
881
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
624
882
|
name: string;
|
|
@@ -657,6 +915,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
657
915
|
walletFactoryAddress: string;
|
|
658
916
|
walletImplementationAddress: string;
|
|
659
917
|
batcherContractAddress: string;
|
|
918
|
+
nativeCoinOperationHashPrefix: string;
|
|
919
|
+
tokenOperationHashPrefix: string;
|
|
660
920
|
}
|
|
661
921
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
662
922
|
name: string;
|
|
@@ -669,22 +929,351 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
669
929
|
walletFactoryAddress: string;
|
|
670
930
|
walletImplementationAddress: string;
|
|
671
931
|
batcherContractAddress: string;
|
|
932
|
+
nativeCoinOperationHashPrefix: string;
|
|
933
|
+
tokenOperationHashPrefix: string;
|
|
934
|
+
}
|
|
935
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
936
|
+
name: string;
|
|
937
|
+
family: CoinFamily;
|
|
938
|
+
explorerUrl: string;
|
|
939
|
+
accountExplorerUrl: string;
|
|
940
|
+
chainId: number;
|
|
941
|
+
nativeCoinOperationHashPrefix: string;
|
|
942
|
+
tokenOperationHashPrefix: string;
|
|
943
|
+
forwarderFactoryAddress: string;
|
|
944
|
+
forwarderImplementationAddress: string;
|
|
945
|
+
walletFactoryAddress: string;
|
|
946
|
+
walletImplementationAddress: string;
|
|
947
|
+
batcherContractAddress: string;
|
|
948
|
+
}
|
|
949
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
950
|
+
name: string;
|
|
951
|
+
family: CoinFamily;
|
|
952
|
+
explorerUrl: string;
|
|
953
|
+
accountExplorerUrl: string;
|
|
954
|
+
chainId: number;
|
|
955
|
+
nativeCoinOperationHashPrefix: string;
|
|
956
|
+
tokenOperationHashPrefix: string;
|
|
957
|
+
forwarderFactoryAddress: string;
|
|
958
|
+
forwarderImplementationAddress: string;
|
|
959
|
+
walletFactoryAddress: string;
|
|
960
|
+
walletImplementationAddress: string;
|
|
961
|
+
batcherContractAddress: string;
|
|
962
|
+
}
|
|
963
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
964
|
+
name: string;
|
|
965
|
+
family: CoinFamily;
|
|
966
|
+
explorerUrl: string;
|
|
967
|
+
accountExplorerUrl: string;
|
|
968
|
+
chainId: number;
|
|
969
|
+
nativeCoinOperationHashPrefix: string;
|
|
970
|
+
tokenOperationHashPrefix: string;
|
|
971
|
+
}
|
|
972
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
973
|
+
name: string;
|
|
974
|
+
family: CoinFamily;
|
|
975
|
+
explorerUrl: string;
|
|
976
|
+
accountExplorerUrl: string;
|
|
977
|
+
chainId: number;
|
|
978
|
+
nativeCoinOperationHashPrefix: string;
|
|
979
|
+
tokenOperationHashPrefix: string;
|
|
980
|
+
forwarderFactoryAddress: string;
|
|
981
|
+
forwarderImplementationAddress: string;
|
|
982
|
+
walletFactoryAddress: string;
|
|
983
|
+
walletImplementationAddress: string;
|
|
984
|
+
}
|
|
985
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
986
|
+
name: string;
|
|
987
|
+
family: CoinFamily;
|
|
988
|
+
explorerUrl: string;
|
|
989
|
+
accountExplorerUrl: string;
|
|
990
|
+
chainId: number;
|
|
991
|
+
nativeCoinOperationHashPrefix: string;
|
|
992
|
+
tokenOperationHashPrefix: string;
|
|
993
|
+
batcherContractAddress: string;
|
|
994
|
+
forwarderFactoryAddress: string;
|
|
995
|
+
forwarderImplementationAddress: string;
|
|
996
|
+
}
|
|
997
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
998
|
+
name: string;
|
|
999
|
+
family: CoinFamily;
|
|
1000
|
+
explorerUrl: string;
|
|
1001
|
+
accountExplorerUrl: string;
|
|
1002
|
+
chainId: number;
|
|
1003
|
+
nativeCoinOperationHashPrefix: string;
|
|
1004
|
+
tokenOperationHashPrefix: string;
|
|
1005
|
+
batcherContractAddress: string;
|
|
1006
|
+
forwarderFactoryAddress: string;
|
|
1007
|
+
forwarderImplementationAddress: string;
|
|
1008
|
+
}
|
|
1009
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1010
|
+
name: string;
|
|
1011
|
+
family: CoinFamily;
|
|
1012
|
+
explorerUrl: string;
|
|
1013
|
+
accountExplorerUrl: string;
|
|
1014
|
+
chainId: number;
|
|
1015
|
+
nativeCoinOperationHashPrefix: string;
|
|
1016
|
+
batcherContractAddress: string;
|
|
1017
|
+
forwarderFactoryAddress: string;
|
|
1018
|
+
forwarderImplementationAddress: string;
|
|
1019
|
+
}
|
|
1020
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1021
|
+
name: string;
|
|
1022
|
+
family: CoinFamily;
|
|
1023
|
+
explorerUrl: string;
|
|
1024
|
+
accountExplorerUrl: string;
|
|
1025
|
+
chainId: number;
|
|
1026
|
+
nativeCoinOperationHashPrefix: string;
|
|
1027
|
+
batcherContractAddress: string;
|
|
1028
|
+
forwarderFactoryAddress: string;
|
|
1029
|
+
forwarderImplementationAddress: string;
|
|
1030
|
+
}
|
|
1031
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1032
|
+
name: string;
|
|
1033
|
+
family: CoinFamily;
|
|
1034
|
+
explorerUrl: string;
|
|
1035
|
+
accountExplorerUrl: string;
|
|
1036
|
+
chainId: number;
|
|
1037
|
+
nativeCoinOperationHashPrefix: string;
|
|
1038
|
+
batcherContractAddress: string;
|
|
1039
|
+
forwarderFactoryAddress: string;
|
|
1040
|
+
forwarderImplementationAddress: string;
|
|
1041
|
+
}
|
|
1042
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1043
|
+
name: string;
|
|
1044
|
+
family: CoinFamily;
|
|
1045
|
+
explorerUrl: string;
|
|
1046
|
+
accountExplorerUrl: string;
|
|
1047
|
+
chainId: number;
|
|
1048
|
+
nativeCoinOperationHashPrefix: string;
|
|
1049
|
+
batcherContractAddress: string;
|
|
1050
|
+
forwarderFactoryAddress: string;
|
|
1051
|
+
forwarderImplementationAddress: string;
|
|
1052
|
+
}
|
|
1053
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1054
|
+
name: string;
|
|
1055
|
+
family: CoinFamily;
|
|
1056
|
+
explorerUrl: string;
|
|
1057
|
+
accountExplorerUrl: string;
|
|
1058
|
+
chainId: number;
|
|
1059
|
+
nativeCoinOperationHashPrefix: string;
|
|
1060
|
+
batcherContractAddress: string;
|
|
1061
|
+
forwarderFactoryAddress: string;
|
|
1062
|
+
forwarderImplementationAddress: string;
|
|
1063
|
+
}
|
|
1064
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1065
|
+
name: string;
|
|
1066
|
+
family: CoinFamily;
|
|
1067
|
+
explorerUrl: string;
|
|
1068
|
+
accountExplorerUrl: string;
|
|
1069
|
+
chainId: number;
|
|
1070
|
+
nativeCoinOperationHashPrefix: string;
|
|
1071
|
+
batcherContractAddress: string;
|
|
1072
|
+
forwarderFactoryAddress: string;
|
|
1073
|
+
forwarderImplementationAddress: string;
|
|
1074
|
+
}
|
|
1075
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1076
|
+
name: string;
|
|
1077
|
+
family: CoinFamily;
|
|
1078
|
+
explorerUrl: string;
|
|
1079
|
+
accountExplorerUrl: string;
|
|
1080
|
+
chainId: number;
|
|
1081
|
+
nativeCoinOperationHashPrefix: string;
|
|
1082
|
+
batcherContractAddress: string;
|
|
1083
|
+
forwarderFactoryAddress: string;
|
|
1084
|
+
forwarderImplementationAddress: string;
|
|
1085
|
+
}
|
|
1086
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1087
|
+
name: string;
|
|
1088
|
+
family: CoinFamily;
|
|
1089
|
+
explorerUrl: string;
|
|
1090
|
+
accountExplorerUrl: string;
|
|
1091
|
+
chainId: number;
|
|
1092
|
+
nativeCoinOperationHashPrefix: string;
|
|
1093
|
+
batcherContractAddress: string;
|
|
1094
|
+
forwarderFactoryAddress: string;
|
|
1095
|
+
forwarderImplementationAddress: string;
|
|
1096
|
+
}
|
|
1097
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1098
|
+
name: string;
|
|
1099
|
+
family: CoinFamily;
|
|
1100
|
+
explorerUrl: string;
|
|
1101
|
+
accountExplorerUrl: string;
|
|
1102
|
+
chainId: number;
|
|
1103
|
+
nativeCoinOperationHashPrefix: string;
|
|
1104
|
+
}
|
|
1105
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1106
|
+
name: string;
|
|
1107
|
+
family: CoinFamily;
|
|
1108
|
+
explorerUrl: string;
|
|
1109
|
+
chainId: number;
|
|
1110
|
+
nativeCoinOperationHashPrefix: string;
|
|
1111
|
+
}
|
|
1112
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1113
|
+
name: string;
|
|
1114
|
+
family: CoinFamily;
|
|
1115
|
+
explorerUrl: string;
|
|
1116
|
+
accountExplorerUrl: string;
|
|
1117
|
+
chainId: number;
|
|
1118
|
+
nativeCoinOperationHashPrefix: string;
|
|
1119
|
+
}
|
|
1120
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1121
|
+
name: string;
|
|
1122
|
+
family: CoinFamily;
|
|
1123
|
+
explorerUrl: string;
|
|
1124
|
+
accountExplorerUrl: string;
|
|
1125
|
+
chainId: number;
|
|
1126
|
+
nativeCoinOperationHashPrefix: string;
|
|
1127
|
+
}
|
|
1128
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1129
|
+
name: string;
|
|
1130
|
+
family: CoinFamily;
|
|
1131
|
+
explorerUrl: string;
|
|
1132
|
+
accountExplorerUrl: string;
|
|
1133
|
+
chainId: number;
|
|
1134
|
+
nativeCoinOperationHashPrefix: string;
|
|
1135
|
+
}
|
|
1136
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1137
|
+
name: string;
|
|
1138
|
+
family: CoinFamily;
|
|
1139
|
+
explorerUrl: string;
|
|
1140
|
+
accountExplorerUrl: string;
|
|
1141
|
+
chainId: number;
|
|
1142
|
+
nativeCoinOperationHashPrefix: string;
|
|
1143
|
+
}
|
|
1144
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1145
|
+
name: string;
|
|
1146
|
+
family: CoinFamily;
|
|
1147
|
+
explorerUrl: string;
|
|
1148
|
+
chainId: number;
|
|
1149
|
+
nativeCoinOperationHashPrefix: string;
|
|
1150
|
+
}
|
|
1151
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1152
|
+
name: string;
|
|
1153
|
+
family: CoinFamily;
|
|
1154
|
+
explorerUrl: string;
|
|
1155
|
+
accountExplorerUrl: string;
|
|
1156
|
+
chainId: number;
|
|
1157
|
+
nativeCoinOperationHashPrefix: string;
|
|
1158
|
+
}
|
|
1159
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1160
|
+
name: string;
|
|
1161
|
+
family: CoinFamily;
|
|
1162
|
+
explorerUrl: string;
|
|
1163
|
+
accountExplorerUrl: string;
|
|
1164
|
+
chainId: number;
|
|
1165
|
+
nativeCoinOperationHashPrefix: string;
|
|
1166
|
+
batcherContractAddress: string;
|
|
1167
|
+
forwarderFactoryAddress: string;
|
|
1168
|
+
forwarderImplementationAddress: string;
|
|
1169
|
+
}
|
|
1170
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1171
|
+
name: string;
|
|
1172
|
+
family: CoinFamily;
|
|
1173
|
+
explorerUrl: string;
|
|
1174
|
+
accountExplorerUrl: string;
|
|
1175
|
+
chainId: number;
|
|
1176
|
+
nativeCoinOperationHashPrefix: string;
|
|
1177
|
+
batcherContractAddress: string;
|
|
1178
|
+
forwarderFactoryAddress: string;
|
|
1179
|
+
forwarderImplementationAddress: string;
|
|
1180
|
+
}
|
|
1181
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1182
|
+
name: string;
|
|
1183
|
+
family: CoinFamily;
|
|
1184
|
+
explorerUrl: string;
|
|
1185
|
+
accountExplorerUrl: string;
|
|
1186
|
+
chainId: number;
|
|
1187
|
+
nativeCoinOperationHashPrefix: string;
|
|
1188
|
+
batcherContractAddress: string;
|
|
1189
|
+
forwarderFactoryAddress: string;
|
|
1190
|
+
forwarderImplementationAddress: string;
|
|
1191
|
+
}
|
|
1192
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1193
|
+
name: string;
|
|
1194
|
+
family: CoinFamily;
|
|
1195
|
+
explorerUrl: string;
|
|
1196
|
+
accountExplorerUrl: string;
|
|
1197
|
+
chainId: number;
|
|
1198
|
+
nativeCoinOperationHashPrefix: string;
|
|
1199
|
+
batcherContractAddress: string;
|
|
1200
|
+
forwarderFactoryAddress: string;
|
|
1201
|
+
forwarderImplementationAddress: string;
|
|
1202
|
+
}
|
|
1203
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1204
|
+
name: string;
|
|
1205
|
+
family: CoinFamily;
|
|
1206
|
+
explorerUrl: string;
|
|
1207
|
+
accountExplorerUrl: string;
|
|
1208
|
+
chainId: number;
|
|
1209
|
+
nativeCoinOperationHashPrefix: string;
|
|
1210
|
+
tokenOperationHashPrefix: string;
|
|
1211
|
+
forwarderFactoryAddress: string;
|
|
1212
|
+
forwarderImplementationAddress: string;
|
|
1213
|
+
walletFactoryAddress: string;
|
|
1214
|
+
walletImplementationAddress: string;
|
|
1215
|
+
}
|
|
1216
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1217
|
+
name: string;
|
|
1218
|
+
family: CoinFamily;
|
|
1219
|
+
explorerUrl: string;
|
|
1220
|
+
accountExplorerUrl: string;
|
|
1221
|
+
chainId: number;
|
|
1222
|
+
nativeCoinOperationHashPrefix: string;
|
|
1223
|
+
tokenOperationHashPrefix: string;
|
|
1224
|
+
forwarderFactoryAddress: string;
|
|
1225
|
+
forwarderImplementationAddress: string;
|
|
1226
|
+
walletFactoryAddress: string;
|
|
1227
|
+
walletImplementationAddress: string;
|
|
1228
|
+
}
|
|
1229
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1230
|
+
name: string;
|
|
1231
|
+
family: CoinFamily;
|
|
1232
|
+
explorerUrl: string;
|
|
1233
|
+
}
|
|
1234
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1235
|
+
name: string;
|
|
1236
|
+
family: CoinFamily;
|
|
1237
|
+
explorerUrl: string;
|
|
1238
|
+
specName: SubstrateSpecNameType;
|
|
1239
|
+
genesisHash: string;
|
|
1240
|
+
specVersion: number;
|
|
1241
|
+
chainName: string;
|
|
1242
|
+
txVersion: number;
|
|
1243
|
+
}
|
|
1244
|
+
declare class Vet extends Mainnet implements AccountNetwork {
|
|
1245
|
+
name: string;
|
|
1246
|
+
family: CoinFamily;
|
|
1247
|
+
explorerUrl: string;
|
|
1248
|
+
}
|
|
1249
|
+
declare class VetTestnet extends Testnet implements AccountNetwork {
|
|
1250
|
+
name: string;
|
|
1251
|
+
family: CoinFamily;
|
|
1252
|
+
explorerUrl: string;
|
|
672
1253
|
}
|
|
673
1254
|
export declare const Networks: {
|
|
674
1255
|
main: {
|
|
675
1256
|
ada: Readonly<Ada>;
|
|
676
1257
|
algorand: Readonly<Algorand>;
|
|
1258
|
+
apt: Readonly<Apt>;
|
|
1259
|
+
arbitrum: Readonly<Arbitrum>;
|
|
677
1260
|
atom: Readonly<Atom>;
|
|
678
1261
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1262
|
avalancheP: Readonly<AvalancheP>;
|
|
1263
|
+
baby: Readonly<Baby>;
|
|
1264
|
+
basechain: Readonly<BaseChain>;
|
|
680
1265
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1266
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1267
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1268
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1269
|
+
bera: Readonly<Berachain>;
|
|
684
1270
|
bld: Readonly<Bld>;
|
|
685
1271
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1272
|
casper: Readonly<Casper>;
|
|
687
1273
|
celo: Readonly<Celo>;
|
|
1274
|
+
coredao: Readonly<Coredao>;
|
|
1275
|
+
coreum: Readonly<Coreum>;
|
|
1276
|
+
cronos: Readonly<Cronos>;
|
|
688
1277
|
dash: Readonly<Dash>;
|
|
689
1278
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1279
|
dot: Readonly<Polkadot>;
|
|
@@ -695,73 +1284,131 @@ export declare const Networks: {
|
|
|
695
1284
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1285
|
ethereumW: Readonly<EthereumW>;
|
|
697
1286
|
fiat: Readonly<Fiat>;
|
|
1287
|
+
fetchai: Readonly<FetchAi>;
|
|
1288
|
+
flr: Readonly<Flare>;
|
|
698
1289
|
hash: Readonly<Hash>;
|
|
699
1290
|
hedera: Readonly<Hedera>;
|
|
1291
|
+
icp: Readonly<Icp>;
|
|
1292
|
+
initia: Readonly<Initia>;
|
|
700
1293
|
injective: Readonly<Injective>;
|
|
1294
|
+
islm: Readonly<Islm>;
|
|
1295
|
+
kava: Readonly<Kava>;
|
|
1296
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1297
|
litecoin: Readonly<Litecoin>;
|
|
1298
|
+
mon: Readonly<Monad>;
|
|
1299
|
+
mantra: Readonly<Mantra>;
|
|
702
1300
|
polygon: Readonly<Polygon>;
|
|
1301
|
+
polyx: Readonly<Polymesh>;
|
|
1302
|
+
oas: Readonly<Oas>;
|
|
703
1303
|
ofc: Readonly<Ofc>;
|
|
1304
|
+
optimism: Readonly<Optimism>;
|
|
704
1305
|
osmo: Readonly<Osmo>;
|
|
705
1306
|
rbtc: Readonly<Rbtc>;
|
|
1307
|
+
rune: Readonly<Rune>;
|
|
706
1308
|
stellar: Readonly<Stellar>;
|
|
707
1309
|
sei: Readonly<Sei>;
|
|
1310
|
+
sgb: Readonly<Songbird>;
|
|
708
1311
|
sol: Readonly<Sol>;
|
|
709
1312
|
sui: Readonly<Sui>;
|
|
710
1313
|
near: Readonly<Near>;
|
|
711
1314
|
stx: Readonly<Stx>;
|
|
1315
|
+
stt: Readonly<Somnia>;
|
|
1316
|
+
soneium: Readonly<Soneium>;
|
|
712
1317
|
susd: Readonly<SUSD>;
|
|
1318
|
+
tao: Readonly<Bittensor>;
|
|
713
1319
|
tia: Readonly<Tia>;
|
|
1320
|
+
ton: Readonly<Ton>;
|
|
714
1321
|
trx: Readonly<Trx>;
|
|
1322
|
+
vet: Readonly<Vet>;
|
|
1323
|
+
wemix: Readonly<Wemix>;
|
|
1324
|
+
world: Readonly<World>;
|
|
1325
|
+
xdc: Readonly<Xdc>;
|
|
715
1326
|
xrp: Readonly<Xrp>;
|
|
716
1327
|
xtz: Readonly<Xtz>;
|
|
717
1328
|
zCash: Readonly<ZCash>;
|
|
718
1329
|
zeta: Readonly<Zeta>;
|
|
1330
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1331
|
};
|
|
720
1332
|
test: {
|
|
721
1333
|
ada: Readonly<AdaTestnet>;
|
|
722
1334
|
algorand: Readonly<AlgorandTestnet>;
|
|
1335
|
+
apt: Readonly<AptTestnet>;
|
|
1336
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
723
1337
|
atom: Readonly<AtomTestnet>;
|
|
724
1338
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1339
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1340
|
+
baby: Readonly<BabyTestnet>;
|
|
1341
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1342
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1343
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1344
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1345
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1346
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1347
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1348
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1349
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1350
|
bld: Readonly<BldTestnet>;
|
|
731
1351
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1352
|
casper: Readonly<CasperTestnet>;
|
|
1353
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1354
|
celo: Readonly<CeloTestnet>;
|
|
1355
|
+
cronos: Readonly<CronosTestnet>;
|
|
734
1356
|
dash: Readonly<DashTestnet>;
|
|
735
1357
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
736
1358
|
dot: Readonly<PolkadotTestnet>;
|
|
737
1359
|
eCash: Readonly<ECashTestnet>;
|
|
738
1360
|
eos: Readonly<EosTestnet>;
|
|
739
1361
|
fiat: Readonly<FiatTestnet>;
|
|
1362
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1363
|
+
flr: Readonly<FlareTestnet>;
|
|
1364
|
+
mon: Readonly<MonadTestnet>;
|
|
740
1365
|
pyrmont: Readonly<Pyrmont>;
|
|
741
1366
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1367
|
hash: Readonly<HashTestnet>;
|
|
743
1368
|
hedera: Readonly<HederaTestnet>;
|
|
1369
|
+
icp: Readonly<IcpTestnet>;
|
|
1370
|
+
initia: Readonly<InitiaTestnet>;
|
|
744
1371
|
injective: Readonly<InjectiveTestnet>;
|
|
1372
|
+
islm: Readonly<IslmTestnet>;
|
|
1373
|
+
kava: Readonly<KavaTestnet>;
|
|
745
1374
|
kovan: Readonly<Kovan>;
|
|
746
1375
|
goerli: Readonly<Goerli>;
|
|
1376
|
+
holesky: Readonly<Holesky>;
|
|
1377
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1378
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1379
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1380
|
polygon: Readonly<PolygonTestnet>;
|
|
1381
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1382
|
+
oas: Readonly<OasTestnet>;
|
|
749
1383
|
ofc: Readonly<OfcTestnet>;
|
|
1384
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1385
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1386
|
rbtc: Readonly<RbtcTestnet>;
|
|
1387
|
+
rune: Readonly<RuneTestNet>;
|
|
1388
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1389
|
stellar: Readonly<StellarTestnet>;
|
|
753
1390
|
sei: Readonly<SeiTestnet>;
|
|
754
1391
|
sol: Readonly<SolTestnet>;
|
|
755
1392
|
sui: Readonly<SuiTestnet>;
|
|
756
1393
|
near: Readonly<NearTestnet>;
|
|
757
1394
|
stx: Readonly<StxTestnet>;
|
|
1395
|
+
stt: Readonly<SomniaTestnet>;
|
|
1396
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
758
1397
|
susd: Readonly<SUSDTestnet>;
|
|
1398
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1399
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1400
|
tia: Readonly<TiaTestnet>;
|
|
1401
|
+
ton: Readonly<TonTestnet>;
|
|
760
1402
|
trx: Readonly<TrxTestnet>;
|
|
1403
|
+
vet: Readonly<VetTestnet>;
|
|
1404
|
+
wemix: Readonly<WemixTestnet>;
|
|
1405
|
+
world: Readonly<WorldTestnet>;
|
|
1406
|
+
xdc: Readonly<XdcTestnet>;
|
|
761
1407
|
xrp: Readonly<XrpTestnet>;
|
|
762
1408
|
xtz: Readonly<XtzTestnet>;
|
|
763
1409
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1410
|
zeta: Readonly<ZetaTestnet>;
|
|
1411
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1412
|
};
|
|
766
1413
|
};
|
|
767
1414
|
export {};
|