@bitgo-beta/statics 15.1.1-beta.84 → 15.1.1-beta.841
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 +2688 -0
- package/dist/src/account.d.ts +399 -21
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +656 -78
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +7 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +6 -3
- package/dist/src/base.d.ts +1316 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1362 -50
- package/dist/src/coinFeatures.d.ts +79 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +461 -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 +94 -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 +138 -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 +1366 -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 +414 -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 +1294 -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 +136 -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 +331 -0
- package/dist/src/coins.d.ts +2 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +536 -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 +1792 -0
- package/dist/src/index.d.ts +4 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +19 -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 +2 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +59 -3
- package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
- package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
- package/dist/src/networkFeatureMapForTokens.js +27 -0
- package/dist/src/networks.d.ts +558 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +750 -44
- package/dist/src/ofc.d.ts +330 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +688 -14
- package/dist/src/tokenConfig.d.ts +108 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +267 -115
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +77 -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 BittensorSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor';
|
|
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
|
+
blockExplorerUrl: string;
|
|
145
|
+
}
|
|
146
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
147
|
+
name: string;
|
|
148
|
+
family: CoinFamily;
|
|
149
|
+
explorerUrl: string;
|
|
150
|
+
accountExplorerUrl: string;
|
|
151
|
+
blockExplorerUrl: string;
|
|
152
|
+
}
|
|
153
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
154
|
+
name: string;
|
|
155
|
+
family: CoinFamily;
|
|
156
|
+
explorerUrl: string;
|
|
157
|
+
accountExplorerUrl: string;
|
|
158
|
+
chainId: number;
|
|
159
|
+
nativeCoinOperationHashPrefix: string;
|
|
160
|
+
tokenOperationHashPrefix: string;
|
|
161
|
+
forwarderFactoryAddress: string;
|
|
162
|
+
forwarderImplementationAddress: string;
|
|
163
|
+
walletFactoryAddress: string;
|
|
164
|
+
walletImplementationAddress: string;
|
|
165
|
+
}
|
|
166
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
167
|
+
name: string;
|
|
168
|
+
family: CoinFamily;
|
|
169
|
+
explorerUrl: string;
|
|
170
|
+
accountExplorerUrl: string;
|
|
171
|
+
chainId: number;
|
|
172
|
+
nativeCoinOperationHashPrefix: string;
|
|
173
|
+
tokenOperationHashPrefix: string;
|
|
174
|
+
forwarderFactoryAddress: string;
|
|
175
|
+
forwarderImplementationAddress: string;
|
|
176
|
+
walletFactoryAddress: string;
|
|
177
|
+
walletImplementationAddress: 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,76 @@ 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 Islm extends Mainnet implements AccountNetwork {
|
|
755
|
+
name: string;
|
|
756
|
+
family: CoinFamily;
|
|
757
|
+
explorerUrl: string;
|
|
758
|
+
}
|
|
759
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
760
|
+
name: string;
|
|
761
|
+
family: CoinFamily;
|
|
762
|
+
explorerUrl: string;
|
|
763
|
+
}
|
|
555
764
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
556
765
|
name: string;
|
|
557
766
|
family: CoinFamily;
|
|
@@ -586,9 +795,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
586
795
|
family: CoinFamily;
|
|
587
796
|
explorerUrl: undefined;
|
|
588
797
|
}
|
|
798
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
799
|
+
name: string;
|
|
800
|
+
family: CoinFamily;
|
|
801
|
+
explorerUrl: string;
|
|
802
|
+
}
|
|
803
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
804
|
+
name: string;
|
|
805
|
+
family: CoinFamily;
|
|
806
|
+
explorerUrl: string;
|
|
807
|
+
specName: BittensorSpecNameType;
|
|
808
|
+
genesisHash: string;
|
|
809
|
+
specVersion: number;
|
|
810
|
+
chainName: string;
|
|
811
|
+
txVersion: number;
|
|
812
|
+
}
|
|
589
813
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
590
814
|
name: string;
|
|
591
815
|
family: CoinFamily;
|
|
816
|
+
accountExplorerUrl: string;
|
|
592
817
|
explorerUrl: string;
|
|
593
818
|
maxFeeLimit: string;
|
|
594
819
|
contractCallFeeLimit: string;
|
|
@@ -596,6 +821,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
596
821
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
597
822
|
name: string;
|
|
598
823
|
family: CoinFamily;
|
|
824
|
+
accountExplorerUrl: string;
|
|
599
825
|
explorerUrl: string;
|
|
600
826
|
maxFeeLimit: string;
|
|
601
827
|
contractCallFeeLimit: string;
|
|
@@ -614,11 +840,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
614
840
|
name: string;
|
|
615
841
|
family: CoinFamily;
|
|
616
842
|
explorerUrl: string;
|
|
843
|
+
accountExplorerUrl: string;
|
|
617
844
|
}
|
|
618
845
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
619
846
|
name: string;
|
|
620
847
|
family: CoinFamily;
|
|
621
848
|
explorerUrl: string;
|
|
849
|
+
accountExplorerUrl: string;
|
|
622
850
|
}
|
|
623
851
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
624
852
|
name: string;
|
|
@@ -657,6 +885,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
657
885
|
walletFactoryAddress: string;
|
|
658
886
|
walletImplementationAddress: string;
|
|
659
887
|
batcherContractAddress: string;
|
|
888
|
+
nativeCoinOperationHashPrefix: string;
|
|
889
|
+
tokenOperationHashPrefix: string;
|
|
660
890
|
}
|
|
661
891
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
662
892
|
name: string;
|
|
@@ -669,22 +899,302 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
669
899
|
walletFactoryAddress: string;
|
|
670
900
|
walletImplementationAddress: string;
|
|
671
901
|
batcherContractAddress: string;
|
|
902
|
+
nativeCoinOperationHashPrefix: string;
|
|
903
|
+
tokenOperationHashPrefix: string;
|
|
904
|
+
}
|
|
905
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
906
|
+
name: string;
|
|
907
|
+
family: CoinFamily;
|
|
908
|
+
explorerUrl: string;
|
|
909
|
+
accountExplorerUrl: string;
|
|
910
|
+
chainId: number;
|
|
911
|
+
nativeCoinOperationHashPrefix: string;
|
|
912
|
+
tokenOperationHashPrefix: string;
|
|
913
|
+
forwarderFactoryAddress: string;
|
|
914
|
+
forwarderImplementationAddress: string;
|
|
915
|
+
walletFactoryAddress: string;
|
|
916
|
+
walletImplementationAddress: string;
|
|
917
|
+
batcherContractAddress: string;
|
|
918
|
+
}
|
|
919
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
920
|
+
name: string;
|
|
921
|
+
family: CoinFamily;
|
|
922
|
+
explorerUrl: string;
|
|
923
|
+
accountExplorerUrl: string;
|
|
924
|
+
chainId: number;
|
|
925
|
+
nativeCoinOperationHashPrefix: string;
|
|
926
|
+
tokenOperationHashPrefix: string;
|
|
927
|
+
forwarderFactoryAddress: string;
|
|
928
|
+
forwarderImplementationAddress: string;
|
|
929
|
+
walletFactoryAddress: string;
|
|
930
|
+
walletImplementationAddress: string;
|
|
931
|
+
batcherContractAddress: string;
|
|
932
|
+
}
|
|
933
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
934
|
+
name: string;
|
|
935
|
+
family: CoinFamily;
|
|
936
|
+
explorerUrl: string;
|
|
937
|
+
accountExplorerUrl: string;
|
|
938
|
+
chainId: number;
|
|
939
|
+
nativeCoinOperationHashPrefix: string;
|
|
940
|
+
tokenOperationHashPrefix: string;
|
|
941
|
+
}
|
|
942
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
943
|
+
name: string;
|
|
944
|
+
family: CoinFamily;
|
|
945
|
+
explorerUrl: string;
|
|
946
|
+
accountExplorerUrl: string;
|
|
947
|
+
chainId: number;
|
|
948
|
+
nativeCoinOperationHashPrefix: string;
|
|
949
|
+
tokenOperationHashPrefix: string;
|
|
950
|
+
forwarderFactoryAddress: string;
|
|
951
|
+
forwarderImplementationAddress: string;
|
|
952
|
+
walletFactoryAddress: string;
|
|
953
|
+
walletImplementationAddress: string;
|
|
954
|
+
}
|
|
955
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
956
|
+
name: string;
|
|
957
|
+
family: CoinFamily;
|
|
958
|
+
explorerUrl: string;
|
|
959
|
+
accountExplorerUrl: string;
|
|
960
|
+
chainId: number;
|
|
961
|
+
nativeCoinOperationHashPrefix: string;
|
|
962
|
+
tokenOperationHashPrefix: string;
|
|
963
|
+
batcherContractAddress: string;
|
|
964
|
+
forwarderFactoryAddress: string;
|
|
965
|
+
forwarderImplementationAddress: string;
|
|
966
|
+
}
|
|
967
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
968
|
+
name: string;
|
|
969
|
+
family: CoinFamily;
|
|
970
|
+
explorerUrl: string;
|
|
971
|
+
accountExplorerUrl: string;
|
|
972
|
+
chainId: number;
|
|
973
|
+
nativeCoinOperationHashPrefix: string;
|
|
974
|
+
tokenOperationHashPrefix: string;
|
|
975
|
+
batcherContractAddress: string;
|
|
976
|
+
forwarderFactoryAddress: string;
|
|
977
|
+
forwarderImplementationAddress: string;
|
|
978
|
+
}
|
|
979
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
980
|
+
name: string;
|
|
981
|
+
family: CoinFamily;
|
|
982
|
+
explorerUrl: string;
|
|
983
|
+
accountExplorerUrl: string;
|
|
984
|
+
chainId: number;
|
|
985
|
+
nativeCoinOperationHashPrefix: string;
|
|
986
|
+
batcherContractAddress: string;
|
|
987
|
+
forwarderFactoryAddress: string;
|
|
988
|
+
forwarderImplementationAddress: string;
|
|
989
|
+
}
|
|
990
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
991
|
+
name: string;
|
|
992
|
+
family: CoinFamily;
|
|
993
|
+
explorerUrl: string;
|
|
994
|
+
accountExplorerUrl: string;
|
|
995
|
+
chainId: number;
|
|
996
|
+
nativeCoinOperationHashPrefix: string;
|
|
997
|
+
batcherContractAddress: string;
|
|
998
|
+
forwarderFactoryAddress: string;
|
|
999
|
+
forwarderImplementationAddress: string;
|
|
1000
|
+
}
|
|
1001
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1002
|
+
name: string;
|
|
1003
|
+
family: CoinFamily;
|
|
1004
|
+
explorerUrl: string;
|
|
1005
|
+
accountExplorerUrl: string;
|
|
1006
|
+
chainId: number;
|
|
1007
|
+
nativeCoinOperationHashPrefix: string;
|
|
1008
|
+
batcherContractAddress: string;
|
|
1009
|
+
forwarderFactoryAddress: string;
|
|
1010
|
+
forwarderImplementationAddress: string;
|
|
1011
|
+
}
|
|
1012
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1013
|
+
name: string;
|
|
1014
|
+
family: CoinFamily;
|
|
1015
|
+
explorerUrl: string;
|
|
1016
|
+
accountExplorerUrl: string;
|
|
1017
|
+
chainId: number;
|
|
1018
|
+
nativeCoinOperationHashPrefix: string;
|
|
1019
|
+
batcherContractAddress: string;
|
|
1020
|
+
forwarderFactoryAddress: string;
|
|
1021
|
+
forwarderImplementationAddress: string;
|
|
1022
|
+
}
|
|
1023
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1024
|
+
name: string;
|
|
1025
|
+
family: CoinFamily;
|
|
1026
|
+
explorerUrl: string;
|
|
1027
|
+
accountExplorerUrl: string;
|
|
1028
|
+
chainId: number;
|
|
1029
|
+
nativeCoinOperationHashPrefix: string;
|
|
1030
|
+
batcherContractAddress: string;
|
|
1031
|
+
forwarderFactoryAddress: string;
|
|
1032
|
+
forwarderImplementationAddress: string;
|
|
1033
|
+
}
|
|
1034
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1035
|
+
name: string;
|
|
1036
|
+
family: CoinFamily;
|
|
1037
|
+
explorerUrl: string;
|
|
1038
|
+
accountExplorerUrl: string;
|
|
1039
|
+
chainId: number;
|
|
1040
|
+
nativeCoinOperationHashPrefix: string;
|
|
1041
|
+
batcherContractAddress: string;
|
|
1042
|
+
forwarderFactoryAddress: string;
|
|
1043
|
+
forwarderImplementationAddress: string;
|
|
1044
|
+
}
|
|
1045
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1046
|
+
name: string;
|
|
1047
|
+
family: CoinFamily;
|
|
1048
|
+
explorerUrl: string;
|
|
1049
|
+
accountExplorerUrl: string;
|
|
1050
|
+
chainId: number;
|
|
1051
|
+
nativeCoinOperationHashPrefix: string;
|
|
1052
|
+
batcherContractAddress: string;
|
|
1053
|
+
forwarderFactoryAddress: string;
|
|
1054
|
+
forwarderImplementationAddress: string;
|
|
1055
|
+
}
|
|
1056
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1057
|
+
name: string;
|
|
1058
|
+
family: CoinFamily;
|
|
1059
|
+
explorerUrl: string;
|
|
1060
|
+
accountExplorerUrl: string;
|
|
1061
|
+
chainId: number;
|
|
1062
|
+
nativeCoinOperationHashPrefix: string;
|
|
1063
|
+
batcherContractAddress: string;
|
|
1064
|
+
forwarderFactoryAddress: string;
|
|
1065
|
+
forwarderImplementationAddress: string;
|
|
1066
|
+
}
|
|
1067
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1068
|
+
name: string;
|
|
1069
|
+
family: CoinFamily;
|
|
1070
|
+
explorerUrl: string;
|
|
1071
|
+
accountExplorerUrl: string;
|
|
1072
|
+
chainId: number;
|
|
1073
|
+
nativeCoinOperationHashPrefix: string;
|
|
1074
|
+
}
|
|
1075
|
+
declare class Monad extends Mainnet implements AccountNetwork {
|
|
1076
|
+
name: string;
|
|
1077
|
+
family: CoinFamily;
|
|
1078
|
+
explorerUrl: string;
|
|
1079
|
+
}
|
|
1080
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1081
|
+
name: string;
|
|
1082
|
+
family: CoinFamily;
|
|
1083
|
+
explorerUrl: string;
|
|
1084
|
+
accountExplorerUrl: string;
|
|
1085
|
+
chainId: number;
|
|
1086
|
+
nativeCoinOperationHashPrefix: string;
|
|
1087
|
+
}
|
|
1088
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1089
|
+
name: string;
|
|
1090
|
+
family: CoinFamily;
|
|
1091
|
+
explorerUrl: string;
|
|
1092
|
+
accountExplorerUrl: string;
|
|
1093
|
+
chainId: number;
|
|
1094
|
+
nativeCoinOperationHashPrefix: string;
|
|
1095
|
+
}
|
|
1096
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1097
|
+
name: string;
|
|
1098
|
+
family: CoinFamily;
|
|
1099
|
+
explorerUrl: string;
|
|
1100
|
+
accountExplorerUrl: string;
|
|
1101
|
+
chainId: number;
|
|
1102
|
+
nativeCoinOperationHashPrefix: string;
|
|
1103
|
+
batcherContractAddress: string;
|
|
1104
|
+
forwarderFactoryAddress: string;
|
|
1105
|
+
forwarderImplementationAddress: string;
|
|
1106
|
+
}
|
|
1107
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1108
|
+
name: string;
|
|
1109
|
+
family: CoinFamily;
|
|
1110
|
+
explorerUrl: string;
|
|
1111
|
+
accountExplorerUrl: string;
|
|
1112
|
+
chainId: number;
|
|
1113
|
+
nativeCoinOperationHashPrefix: string;
|
|
1114
|
+
batcherContractAddress: string;
|
|
1115
|
+
forwarderFactoryAddress: string;
|
|
1116
|
+
forwarderImplementationAddress: string;
|
|
1117
|
+
}
|
|
1118
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1119
|
+
name: string;
|
|
1120
|
+
family: CoinFamily;
|
|
1121
|
+
explorerUrl: string;
|
|
1122
|
+
accountExplorerUrl: string;
|
|
1123
|
+
chainId: number;
|
|
1124
|
+
nativeCoinOperationHashPrefix: string;
|
|
1125
|
+
batcherContractAddress: string;
|
|
1126
|
+
forwarderFactoryAddress: string;
|
|
1127
|
+
forwarderImplementationAddress: string;
|
|
1128
|
+
}
|
|
1129
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1130
|
+
name: string;
|
|
1131
|
+
family: CoinFamily;
|
|
1132
|
+
explorerUrl: string;
|
|
1133
|
+
accountExplorerUrl: string;
|
|
1134
|
+
chainId: number;
|
|
1135
|
+
nativeCoinOperationHashPrefix: string;
|
|
1136
|
+
batcherContractAddress: string;
|
|
1137
|
+
forwarderFactoryAddress: string;
|
|
1138
|
+
forwarderImplementationAddress: string;
|
|
1139
|
+
}
|
|
1140
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1141
|
+
name: string;
|
|
1142
|
+
family: CoinFamily;
|
|
1143
|
+
explorerUrl: string;
|
|
1144
|
+
accountExplorerUrl: string;
|
|
1145
|
+
chainId: number;
|
|
1146
|
+
nativeCoinOperationHashPrefix: string;
|
|
1147
|
+
tokenOperationHashPrefix: string;
|
|
1148
|
+
forwarderFactoryAddress: string;
|
|
1149
|
+
forwarderImplementationAddress: string;
|
|
1150
|
+
walletFactoryAddress: string;
|
|
1151
|
+
walletImplementationAddress: string;
|
|
1152
|
+
}
|
|
1153
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1154
|
+
name: string;
|
|
1155
|
+
family: CoinFamily;
|
|
1156
|
+
explorerUrl: string;
|
|
1157
|
+
accountExplorerUrl: string;
|
|
1158
|
+
chainId: number;
|
|
1159
|
+
nativeCoinOperationHashPrefix: string;
|
|
1160
|
+
tokenOperationHashPrefix: string;
|
|
1161
|
+
forwarderFactoryAddress: string;
|
|
1162
|
+
forwarderImplementationAddress: string;
|
|
1163
|
+
walletFactoryAddress: string;
|
|
1164
|
+
walletImplementationAddress: string;
|
|
1165
|
+
}
|
|
1166
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1167
|
+
name: string;
|
|
1168
|
+
family: CoinFamily;
|
|
1169
|
+
explorerUrl: string;
|
|
1170
|
+
}
|
|
1171
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1172
|
+
name: string;
|
|
1173
|
+
family: CoinFamily;
|
|
1174
|
+
explorerUrl: string;
|
|
672
1175
|
}
|
|
673
1176
|
export declare const Networks: {
|
|
674
1177
|
main: {
|
|
675
1178
|
ada: Readonly<Ada>;
|
|
676
1179
|
algorand: Readonly<Algorand>;
|
|
1180
|
+
apt: Readonly<Apt>;
|
|
1181
|
+
arbitrum: Readonly<Arbitrum>;
|
|
677
1182
|
atom: Readonly<Atom>;
|
|
678
1183
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1184
|
avalancheP: Readonly<AvalancheP>;
|
|
1185
|
+
baby: Readonly<Baby>;
|
|
1186
|
+
basechain: Readonly<BaseChain>;
|
|
680
1187
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1188
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1189
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1190
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1191
|
+
bera: Readonly<Berachain>;
|
|
684
1192
|
bld: Readonly<Bld>;
|
|
685
1193
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1194
|
casper: Readonly<Casper>;
|
|
687
1195
|
celo: Readonly<Celo>;
|
|
1196
|
+
coredao: Readonly<Coredao>;
|
|
1197
|
+
coreum: Readonly<Coreum>;
|
|
688
1198
|
dash: Readonly<Dash>;
|
|
689
1199
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1200
|
dot: Readonly<Polkadot>;
|
|
@@ -695,41 +1205,68 @@ export declare const Networks: {
|
|
|
695
1205
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1206
|
ethereumW: Readonly<EthereumW>;
|
|
697
1207
|
fiat: Readonly<Fiat>;
|
|
1208
|
+
flr: Readonly<Flare>;
|
|
698
1209
|
hash: Readonly<Hash>;
|
|
699
1210
|
hedera: Readonly<Hedera>;
|
|
1211
|
+
icp: Readonly<Icp>;
|
|
700
1212
|
injective: Readonly<Injective>;
|
|
1213
|
+
islm: Readonly<Islm>;
|
|
1214
|
+
kava: Readonly<Kava>;
|
|
1215
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1216
|
litecoin: Readonly<Litecoin>;
|
|
1217
|
+
mon: Readonly<Monad>;
|
|
1218
|
+
mantra: Readonly<Mantra>;
|
|
702
1219
|
polygon: Readonly<Polygon>;
|
|
1220
|
+
polyx: Readonly<Polymesh>;
|
|
1221
|
+
oas: Readonly<Oas>;
|
|
703
1222
|
ofc: Readonly<Ofc>;
|
|
1223
|
+
optimism: Readonly<Optimism>;
|
|
704
1224
|
osmo: Readonly<Osmo>;
|
|
705
1225
|
rbtc: Readonly<Rbtc>;
|
|
1226
|
+
rune: Readonly<Rune>;
|
|
706
1227
|
stellar: Readonly<Stellar>;
|
|
707
1228
|
sei: Readonly<Sei>;
|
|
1229
|
+
sgb: Readonly<Songbird>;
|
|
708
1230
|
sol: Readonly<Sol>;
|
|
709
1231
|
sui: Readonly<Sui>;
|
|
710
1232
|
near: Readonly<Near>;
|
|
711
1233
|
stx: Readonly<Stx>;
|
|
712
1234
|
susd: Readonly<SUSD>;
|
|
1235
|
+
tao: Readonly<Bittensor>;
|
|
713
1236
|
tia: Readonly<Tia>;
|
|
1237
|
+
ton: Readonly<Ton>;
|
|
714
1238
|
trx: Readonly<Trx>;
|
|
1239
|
+
wemix: Readonly<Wemix>;
|
|
1240
|
+
world: Readonly<World>;
|
|
1241
|
+
xdc: Readonly<Xdc>;
|
|
715
1242
|
xrp: Readonly<Xrp>;
|
|
716
1243
|
xtz: Readonly<Xtz>;
|
|
717
1244
|
zCash: Readonly<ZCash>;
|
|
718
1245
|
zeta: Readonly<Zeta>;
|
|
1246
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1247
|
};
|
|
720
1248
|
test: {
|
|
721
1249
|
ada: Readonly<AdaTestnet>;
|
|
722
1250
|
algorand: Readonly<AlgorandTestnet>;
|
|
1251
|
+
apt: Readonly<AptTestnet>;
|
|
1252
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
723
1253
|
atom: Readonly<AtomTestnet>;
|
|
724
1254
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1255
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1256
|
+
baby: Readonly<BabyTestnet>;
|
|
1257
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1258
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1259
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1260
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1261
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1262
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1263
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1264
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1265
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1266
|
bld: Readonly<BldTestnet>;
|
|
731
1267
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1268
|
casper: Readonly<CasperTestnet>;
|
|
1269
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1270
|
celo: Readonly<CeloTestnet>;
|
|
734
1271
|
dash: Readonly<DashTestnet>;
|
|
735
1272
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
@@ -737,18 +1274,31 @@ export declare const Networks: {
|
|
|
737
1274
|
eCash: Readonly<ECashTestnet>;
|
|
738
1275
|
eos: Readonly<EosTestnet>;
|
|
739
1276
|
fiat: Readonly<FiatTestnet>;
|
|
1277
|
+
flr: Readonly<FlareTestnet>;
|
|
1278
|
+
mon: Readonly<MonadTestnet>;
|
|
740
1279
|
pyrmont: Readonly<Pyrmont>;
|
|
741
1280
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1281
|
hash: Readonly<HashTestnet>;
|
|
743
1282
|
hedera: Readonly<HederaTestnet>;
|
|
1283
|
+
icp: Readonly<IcpTestnet>;
|
|
744
1284
|
injective: Readonly<InjectiveTestnet>;
|
|
1285
|
+
islm: Readonly<IslmTestnet>;
|
|
1286
|
+
kava: Readonly<KavaTestnet>;
|
|
745
1287
|
kovan: Readonly<Kovan>;
|
|
746
1288
|
goerli: Readonly<Goerli>;
|
|
1289
|
+
holesky: Readonly<Holesky>;
|
|
1290
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1291
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1292
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1293
|
polygon: Readonly<PolygonTestnet>;
|
|
1294
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1295
|
+
oas: Readonly<OasTestnet>;
|
|
749
1296
|
ofc: Readonly<OfcTestnet>;
|
|
1297
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1298
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1299
|
rbtc: Readonly<RbtcTestnet>;
|
|
1300
|
+
rune: Readonly<RuneTestNet>;
|
|
1301
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1302
|
stellar: Readonly<StellarTestnet>;
|
|
753
1303
|
sei: Readonly<SeiTestnet>;
|
|
754
1304
|
sol: Readonly<SolTestnet>;
|
|
@@ -756,12 +1306,19 @@ export declare const Networks: {
|
|
|
756
1306
|
near: Readonly<NearTestnet>;
|
|
757
1307
|
stx: Readonly<StxTestnet>;
|
|
758
1308
|
susd: Readonly<SUSDTestnet>;
|
|
1309
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1310
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1311
|
tia: Readonly<TiaTestnet>;
|
|
1312
|
+
ton: Readonly<TonTestnet>;
|
|
760
1313
|
trx: Readonly<TrxTestnet>;
|
|
1314
|
+
wemix: Readonly<WemixTestnet>;
|
|
1315
|
+
world: Readonly<WorldTestnet>;
|
|
1316
|
+
xdc: Readonly<XdcTestnet>;
|
|
761
1317
|
xrp: Readonly<XrpTestnet>;
|
|
762
1318
|
xtz: Readonly<XtzTestnet>;
|
|
763
1319
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1320
|
zeta: Readonly<ZetaTestnet>;
|
|
1321
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1322
|
};
|
|
766
1323
|
};
|
|
767
1324
|
export {};
|