@bitgo-beta/statics 15.1.1-beta.77 → 15.1.1-beta.771
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 +2650 -0
- package/dist/src/account.d.ts +353 -21
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +585 -76
- 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 +1250 -38
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1294 -49
- package/dist/src/coinFeatures.d.ts +78 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +445 -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 +93 -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 +136 -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 +1347 -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 +258 -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 +1275 -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 +135 -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 +13 -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 +328 -0
- package/dist/src/coins.d.ts +0 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +348 -1505
- 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 +1794 -0
- package/dist/src/index.d.ts +3 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +16 -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 +46 -3
- package/dist/src/networks.d.ts +498 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +665 -44
- package/dist/src/ofc.d.ts +279 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +583 -14
- package/dist/src/tokenConfig.d.ts +78 -13
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +155 -7
- 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,14 +48,17 @@ 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;
|
|
55
|
+
readonly blockExplorerUrl?: string;
|
|
46
56
|
}
|
|
47
57
|
/**
|
|
48
58
|
* Specification name type of the chain. Used in setting up the registry
|
|
49
59
|
*/
|
|
50
|
-
export
|
|
60
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
61
|
+
export type BittensorSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor';
|
|
51
62
|
export interface DotNetwork extends AccountNetwork {
|
|
52
63
|
readonly specName: PolkadotSpecNameType;
|
|
53
64
|
readonly genesisHash: string;
|
|
@@ -60,6 +71,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
60
71
|
readonly batcherContractAddress?: string;
|
|
61
72
|
readonly forwarderFactoryAddress?: string;
|
|
62
73
|
readonly forwarderImplementationAddress?: string;
|
|
74
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
75
|
+
readonly tokenOperationHashPrefix?: string;
|
|
63
76
|
}
|
|
64
77
|
export interface TronNetwork extends AccountNetwork {
|
|
65
78
|
maxFeeLimit: string;
|
|
@@ -109,6 +122,56 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
109
122
|
poolDeposit: number;
|
|
110
123
|
stakeKeyDeposit: number;
|
|
111
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
|
+
}
|
|
144
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
145
|
+
name: string;
|
|
146
|
+
family: CoinFamily;
|
|
147
|
+
explorerUrl: string;
|
|
148
|
+
}
|
|
149
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
150
|
+
name: string;
|
|
151
|
+
family: CoinFamily;
|
|
152
|
+
explorerUrl: string;
|
|
153
|
+
accountExplorerUrl: string;
|
|
154
|
+
chainId: number;
|
|
155
|
+
nativeCoinOperationHashPrefix: string;
|
|
156
|
+
tokenOperationHashPrefix: string;
|
|
157
|
+
forwarderFactoryAddress: string;
|
|
158
|
+
forwarderImplementationAddress: string;
|
|
159
|
+
walletFactoryAddress: string;
|
|
160
|
+
walletImplementationAddress: string;
|
|
161
|
+
}
|
|
162
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
163
|
+
name: string;
|
|
164
|
+
family: CoinFamily;
|
|
165
|
+
explorerUrl: string;
|
|
166
|
+
accountExplorerUrl: string;
|
|
167
|
+
chainId: number;
|
|
168
|
+
nativeCoinOperationHashPrefix: string;
|
|
169
|
+
tokenOperationHashPrefix: string;
|
|
170
|
+
forwarderFactoryAddress: string;
|
|
171
|
+
forwarderImplementationAddress: string;
|
|
172
|
+
walletFactoryAddress: string;
|
|
173
|
+
walletImplementationAddress: string;
|
|
174
|
+
}
|
|
112
175
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
113
176
|
name: string;
|
|
114
177
|
family: CoinFamily;
|
|
@@ -136,6 +199,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
136
199
|
alias: string;
|
|
137
200
|
vm: string;
|
|
138
201
|
txFee: string;
|
|
202
|
+
maxImportFee: string;
|
|
139
203
|
createSubnetTx: string;
|
|
140
204
|
createChainTx: string;
|
|
141
205
|
creationTxFee: string;
|
|
@@ -161,6 +225,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
161
225
|
hrp: string;
|
|
162
226
|
vm: string;
|
|
163
227
|
txFee: string;
|
|
228
|
+
maxImportFee: string;
|
|
164
229
|
createSubnetTx: string;
|
|
165
230
|
createChainTx: string;
|
|
166
231
|
creationTxFee: string;
|
|
@@ -179,6 +244,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
179
244
|
explorerUrl: string;
|
|
180
245
|
accountExplorerUrl: string;
|
|
181
246
|
chainId: number;
|
|
247
|
+
nativeCoinOperationHashPrefix: string;
|
|
248
|
+
tokenOperationHashPrefix: string;
|
|
249
|
+
batcherContractAddress: string;
|
|
182
250
|
}
|
|
183
251
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
184
252
|
name: string;
|
|
@@ -186,6 +254,23 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
186
254
|
explorerUrl: string;
|
|
187
255
|
accountExplorerUrl: string;
|
|
188
256
|
chainId: number;
|
|
257
|
+
nativeCoinOperationHashPrefix: string;
|
|
258
|
+
tokenOperationHashPrefix: string;
|
|
259
|
+
batcherContractAddress: string;
|
|
260
|
+
}
|
|
261
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
262
|
+
name: string;
|
|
263
|
+
family: CoinFamily;
|
|
264
|
+
utxolibName: string;
|
|
265
|
+
explorerUrl: string;
|
|
266
|
+
lightningServicePubKey: string;
|
|
267
|
+
}
|
|
268
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
269
|
+
name: string;
|
|
270
|
+
family: CoinFamily;
|
|
271
|
+
utxolibName: string;
|
|
272
|
+
explorerUrl: string;
|
|
273
|
+
lightningServicePubKey: string;
|
|
189
274
|
}
|
|
190
275
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
191
276
|
name: string;
|
|
@@ -199,6 +284,24 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
199
284
|
utxolibName: string;
|
|
200
285
|
explorerUrl: string;
|
|
201
286
|
}
|
|
287
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
288
|
+
name: string;
|
|
289
|
+
family: CoinFamily;
|
|
290
|
+
utxolibName: string;
|
|
291
|
+
explorerUrl: string;
|
|
292
|
+
}
|
|
293
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
294
|
+
name: string;
|
|
295
|
+
family: CoinFamily;
|
|
296
|
+
utxolibName: string;
|
|
297
|
+
explorerUrl: string;
|
|
298
|
+
}
|
|
299
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
300
|
+
name: string;
|
|
301
|
+
family: CoinFamily;
|
|
302
|
+
utxolibName: string;
|
|
303
|
+
explorerUrl: string;
|
|
304
|
+
}
|
|
202
305
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
203
306
|
name: string;
|
|
204
307
|
family: CoinFamily;
|
|
@@ -297,6 +400,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
297
400
|
explorerUrl: string;
|
|
298
401
|
accountExplorerUrl: string;
|
|
299
402
|
chainId: number;
|
|
403
|
+
nativeCoinOperationHashPrefix: string;
|
|
404
|
+
tokenOperationHashPrefix: string;
|
|
300
405
|
}
|
|
301
406
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
302
407
|
name: string;
|
|
@@ -304,6 +409,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
304
409
|
explorerUrl: string;
|
|
305
410
|
accountExplorerUrl: string;
|
|
306
411
|
chainId: number;
|
|
412
|
+
nativeCoinOperationHashPrefix: string;
|
|
413
|
+
tokenOperationHashPrefix: string;
|
|
307
414
|
}
|
|
308
415
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
309
416
|
name: string;
|
|
@@ -322,10 +429,13 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
322
429
|
family: CoinFamily;
|
|
323
430
|
explorerUrl: string;
|
|
324
431
|
accountExplorerUrl: string;
|
|
432
|
+
blockExplorerUrl: string;
|
|
325
433
|
chainId: number;
|
|
326
434
|
batcherContractAddress: string;
|
|
327
435
|
forwarderFactoryAddress: string;
|
|
328
436
|
forwarderImplementationAddress: string;
|
|
437
|
+
nativeCoinOperationHashPrefix: string;
|
|
438
|
+
tokenOperationHashPrefix: string;
|
|
329
439
|
}
|
|
330
440
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
331
441
|
name: string;
|
|
@@ -342,6 +452,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
342
452
|
batcherContractAddress: string;
|
|
343
453
|
forwarderFactoryAddress: string;
|
|
344
454
|
forwarderImplementationAddress: string;
|
|
455
|
+
nativeCoinOperationHashPrefix: string;
|
|
456
|
+
tokenOperationHashPrefix: string;
|
|
345
457
|
}
|
|
346
458
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
347
459
|
name: string;
|
|
@@ -358,16 +470,34 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
358
470
|
batcherContractAddress: string;
|
|
359
471
|
forwarderFactoryAddress: string;
|
|
360
472
|
forwarderImplementationAddress: string;
|
|
473
|
+
nativeCoinOperationHashPrefix: string;
|
|
474
|
+
tokenOperationHashPrefix: string;
|
|
361
475
|
}
|
|
362
476
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
363
477
|
name: string;
|
|
364
478
|
family: CoinFamily;
|
|
365
479
|
explorerUrl: string;
|
|
366
480
|
accountExplorerUrl: string;
|
|
481
|
+
blockExplorerUrl: string;
|
|
482
|
+
chainId: number;
|
|
483
|
+
batcherContractAddress: string;
|
|
484
|
+
forwarderFactoryAddress: string;
|
|
485
|
+
forwarderImplementationAddress: string;
|
|
486
|
+
nativeCoinOperationHashPrefix: string;
|
|
487
|
+
tokenOperationHashPrefix: string;
|
|
488
|
+
}
|
|
489
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
490
|
+
name: string;
|
|
491
|
+
family: CoinFamily;
|
|
492
|
+
explorerUrl: string;
|
|
493
|
+
accountExplorerUrl: string;
|
|
494
|
+
blockExplorerUrl: string;
|
|
367
495
|
chainId: number;
|
|
368
496
|
batcherContractAddress: string;
|
|
369
497
|
forwarderFactoryAddress: string;
|
|
370
498
|
forwarderImplementationAddress: string;
|
|
499
|
+
nativeCoinOperationHashPrefix: string;
|
|
500
|
+
tokenOperationHashPrefix: string;
|
|
371
501
|
}
|
|
372
502
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
373
503
|
name: string;
|
|
@@ -375,6 +505,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
375
505
|
explorerUrl: string;
|
|
376
506
|
accountExplorerUrl: string;
|
|
377
507
|
chainId: number;
|
|
508
|
+
nativeCoinOperationHashPrefix: string;
|
|
509
|
+
tokenOperationHashPrefix: string;
|
|
378
510
|
}
|
|
379
511
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
380
512
|
name: string;
|
|
@@ -382,6 +514,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
382
514
|
explorerUrl: string;
|
|
383
515
|
accountExplorerUrl: string;
|
|
384
516
|
chainId: number;
|
|
517
|
+
nativeCoinOperationHashPrefix: string;
|
|
518
|
+
tokenOperationHashPrefix: string;
|
|
385
519
|
}
|
|
386
520
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
387
521
|
name: string;
|
|
@@ -431,6 +565,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
431
565
|
explorerUrl: string;
|
|
432
566
|
accountExplorerUrl: string;
|
|
433
567
|
chainId: number;
|
|
568
|
+
nativeCoinOperationHashPrefix: string;
|
|
569
|
+
tokenOperationHashPrefix: string;
|
|
434
570
|
}
|
|
435
571
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
436
572
|
name: string;
|
|
@@ -438,6 +574,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
438
574
|
explorerUrl: string;
|
|
439
575
|
accountExplorerUrl: string;
|
|
440
576
|
chainId: number;
|
|
577
|
+
nativeCoinOperationHashPrefix: string;
|
|
578
|
+
tokenOperationHashPrefix: string;
|
|
441
579
|
}
|
|
442
580
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
443
581
|
name: string;
|
|
@@ -549,6 +687,66 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
549
687
|
family: CoinFamily;
|
|
550
688
|
explorerUrl: string;
|
|
551
689
|
}
|
|
690
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
691
|
+
name: string;
|
|
692
|
+
family: CoinFamily;
|
|
693
|
+
explorerUrl: string;
|
|
694
|
+
}
|
|
695
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
696
|
+
name: string;
|
|
697
|
+
family: CoinFamily;
|
|
698
|
+
explorerUrl: string;
|
|
699
|
+
}
|
|
700
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
701
|
+
name: string;
|
|
702
|
+
family: CoinFamily;
|
|
703
|
+
explorerUrl: string;
|
|
704
|
+
}
|
|
705
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
706
|
+
name: string;
|
|
707
|
+
family: CoinFamily;
|
|
708
|
+
explorerUrl: string;
|
|
709
|
+
}
|
|
710
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
711
|
+
name: string;
|
|
712
|
+
family: CoinFamily;
|
|
713
|
+
explorerUrl: string;
|
|
714
|
+
}
|
|
715
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
716
|
+
name: string;
|
|
717
|
+
family: CoinFamily;
|
|
718
|
+
explorerUrl: string;
|
|
719
|
+
}
|
|
720
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
721
|
+
name: string;
|
|
722
|
+
family: CoinFamily;
|
|
723
|
+
explorerUrl: string;
|
|
724
|
+
}
|
|
725
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
726
|
+
name: string;
|
|
727
|
+
family: CoinFamily;
|
|
728
|
+
explorerUrl: string;
|
|
729
|
+
}
|
|
730
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
731
|
+
name: string;
|
|
732
|
+
family: CoinFamily;
|
|
733
|
+
explorerUrl: string;
|
|
734
|
+
}
|
|
735
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
736
|
+
name: string;
|
|
737
|
+
family: CoinFamily;
|
|
738
|
+
explorerUrl: string;
|
|
739
|
+
}
|
|
740
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
741
|
+
name: string;
|
|
742
|
+
family: CoinFamily;
|
|
743
|
+
explorerUrl: string;
|
|
744
|
+
}
|
|
745
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
746
|
+
name: string;
|
|
747
|
+
family: CoinFamily;
|
|
748
|
+
explorerUrl: string;
|
|
749
|
+
}
|
|
552
750
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
553
751
|
name: string;
|
|
554
752
|
family: CoinFamily;
|
|
@@ -583,9 +781,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
583
781
|
family: CoinFamily;
|
|
584
782
|
explorerUrl: undefined;
|
|
585
783
|
}
|
|
784
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
785
|
+
name: string;
|
|
786
|
+
family: CoinFamily;
|
|
787
|
+
explorerUrl: string;
|
|
788
|
+
}
|
|
789
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
790
|
+
name: string;
|
|
791
|
+
family: CoinFamily;
|
|
792
|
+
explorerUrl: string;
|
|
793
|
+
specName: BittensorSpecNameType;
|
|
794
|
+
genesisHash: string;
|
|
795
|
+
specVersion: number;
|
|
796
|
+
chainName: string;
|
|
797
|
+
txVersion: number;
|
|
798
|
+
}
|
|
586
799
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
587
800
|
name: string;
|
|
588
801
|
family: CoinFamily;
|
|
802
|
+
accountExplorerUrl: string;
|
|
589
803
|
explorerUrl: string;
|
|
590
804
|
maxFeeLimit: string;
|
|
591
805
|
contractCallFeeLimit: string;
|
|
@@ -593,6 +807,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
593
807
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
594
808
|
name: string;
|
|
595
809
|
family: CoinFamily;
|
|
810
|
+
accountExplorerUrl: string;
|
|
596
811
|
explorerUrl: string;
|
|
597
812
|
maxFeeLimit: string;
|
|
598
813
|
contractCallFeeLimit: string;
|
|
@@ -611,11 +826,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
611
826
|
name: string;
|
|
612
827
|
family: CoinFamily;
|
|
613
828
|
explorerUrl: string;
|
|
829
|
+
accountExplorerUrl: string;
|
|
614
830
|
}
|
|
615
831
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
616
832
|
name: string;
|
|
617
833
|
family: CoinFamily;
|
|
618
834
|
explorerUrl: string;
|
|
835
|
+
accountExplorerUrl: string;
|
|
619
836
|
}
|
|
620
837
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
621
838
|
name: string;
|
|
@@ -654,6 +871,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
654
871
|
walletFactoryAddress: string;
|
|
655
872
|
walletImplementationAddress: string;
|
|
656
873
|
batcherContractAddress: string;
|
|
874
|
+
nativeCoinOperationHashPrefix: string;
|
|
875
|
+
tokenOperationHashPrefix: string;
|
|
657
876
|
}
|
|
658
877
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
659
878
|
name: string;
|
|
@@ -666,22 +885,261 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
666
885
|
walletFactoryAddress: string;
|
|
667
886
|
walletImplementationAddress: string;
|
|
668
887
|
batcherContractAddress: string;
|
|
888
|
+
nativeCoinOperationHashPrefix: string;
|
|
889
|
+
tokenOperationHashPrefix: string;
|
|
890
|
+
}
|
|
891
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
892
|
+
name: string;
|
|
893
|
+
family: CoinFamily;
|
|
894
|
+
explorerUrl: string;
|
|
895
|
+
accountExplorerUrl: string;
|
|
896
|
+
chainId: number;
|
|
897
|
+
nativeCoinOperationHashPrefix: string;
|
|
898
|
+
tokenOperationHashPrefix: string;
|
|
899
|
+
forwarderFactoryAddress: string;
|
|
900
|
+
forwarderImplementationAddress: string;
|
|
901
|
+
walletFactoryAddress: string;
|
|
902
|
+
walletImplementationAddress: string;
|
|
903
|
+
}
|
|
904
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
905
|
+
name: string;
|
|
906
|
+
family: CoinFamily;
|
|
907
|
+
explorerUrl: string;
|
|
908
|
+
accountExplorerUrl: string;
|
|
909
|
+
chainId: number;
|
|
910
|
+
nativeCoinOperationHashPrefix: string;
|
|
911
|
+
tokenOperationHashPrefix: string;
|
|
912
|
+
forwarderFactoryAddress: string;
|
|
913
|
+
forwarderImplementationAddress: string;
|
|
914
|
+
walletFactoryAddress: string;
|
|
915
|
+
walletImplementationAddress: string;
|
|
916
|
+
}
|
|
917
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
918
|
+
name: string;
|
|
919
|
+
family: CoinFamily;
|
|
920
|
+
explorerUrl: string;
|
|
921
|
+
accountExplorerUrl: string;
|
|
922
|
+
chainId: number;
|
|
923
|
+
nativeCoinOperationHashPrefix: string;
|
|
924
|
+
tokenOperationHashPrefix: string;
|
|
925
|
+
}
|
|
926
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
927
|
+
name: string;
|
|
928
|
+
family: CoinFamily;
|
|
929
|
+
explorerUrl: string;
|
|
930
|
+
accountExplorerUrl: string;
|
|
931
|
+
chainId: number;
|
|
932
|
+
nativeCoinOperationHashPrefix: string;
|
|
933
|
+
tokenOperationHashPrefix: string;
|
|
934
|
+
forwarderFactoryAddress: string;
|
|
935
|
+
forwarderImplementationAddress: string;
|
|
936
|
+
walletFactoryAddress: string;
|
|
937
|
+
walletImplementationAddress: string;
|
|
938
|
+
}
|
|
939
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
940
|
+
name: string;
|
|
941
|
+
family: CoinFamily;
|
|
942
|
+
explorerUrl: string;
|
|
943
|
+
accountExplorerUrl: string;
|
|
944
|
+
chainId: number;
|
|
945
|
+
nativeCoinOperationHashPrefix: string;
|
|
946
|
+
tokenOperationHashPrefix: string;
|
|
947
|
+
batcherContractAddress: string;
|
|
948
|
+
forwarderFactoryAddress: string;
|
|
949
|
+
forwarderImplementationAddress: string;
|
|
950
|
+
}
|
|
951
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
952
|
+
name: string;
|
|
953
|
+
family: CoinFamily;
|
|
954
|
+
explorerUrl: string;
|
|
955
|
+
accountExplorerUrl: string;
|
|
956
|
+
chainId: number;
|
|
957
|
+
nativeCoinOperationHashPrefix: string;
|
|
958
|
+
tokenOperationHashPrefix: string;
|
|
959
|
+
batcherContractAddress: string;
|
|
960
|
+
forwarderFactoryAddress: string;
|
|
961
|
+
forwarderImplementationAddress: string;
|
|
962
|
+
}
|
|
963
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
964
|
+
name: string;
|
|
965
|
+
family: CoinFamily;
|
|
966
|
+
explorerUrl: string;
|
|
967
|
+
accountExplorerUrl: string;
|
|
968
|
+
chainId: number;
|
|
969
|
+
nativeCoinOperationHashPrefix: string;
|
|
970
|
+
batcherContractAddress: string;
|
|
971
|
+
forwarderFactoryAddress: string;
|
|
972
|
+
forwarderImplementationAddress: string;
|
|
973
|
+
}
|
|
974
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
975
|
+
name: string;
|
|
976
|
+
family: CoinFamily;
|
|
977
|
+
explorerUrl: string;
|
|
978
|
+
accountExplorerUrl: string;
|
|
979
|
+
chainId: number;
|
|
980
|
+
nativeCoinOperationHashPrefix: string;
|
|
981
|
+
batcherContractAddress: string;
|
|
982
|
+
forwarderFactoryAddress: string;
|
|
983
|
+
forwarderImplementationAddress: string;
|
|
984
|
+
}
|
|
985
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
986
|
+
name: string;
|
|
987
|
+
family: CoinFamily;
|
|
988
|
+
explorerUrl: string;
|
|
989
|
+
accountExplorerUrl: string;
|
|
990
|
+
chainId: number;
|
|
991
|
+
nativeCoinOperationHashPrefix: string;
|
|
992
|
+
batcherContractAddress: string;
|
|
993
|
+
forwarderFactoryAddress: string;
|
|
994
|
+
forwarderImplementationAddress: string;
|
|
995
|
+
}
|
|
996
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
997
|
+
name: string;
|
|
998
|
+
family: CoinFamily;
|
|
999
|
+
explorerUrl: string;
|
|
1000
|
+
accountExplorerUrl: string;
|
|
1001
|
+
chainId: number;
|
|
1002
|
+
nativeCoinOperationHashPrefix: string;
|
|
1003
|
+
batcherContractAddress: string;
|
|
1004
|
+
forwarderFactoryAddress: string;
|
|
1005
|
+
forwarderImplementationAddress: string;
|
|
1006
|
+
}
|
|
1007
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1008
|
+
name: string;
|
|
1009
|
+
family: CoinFamily;
|
|
1010
|
+
explorerUrl: string;
|
|
1011
|
+
accountExplorerUrl: string;
|
|
1012
|
+
chainId: number;
|
|
1013
|
+
nativeCoinOperationHashPrefix: string;
|
|
1014
|
+
batcherContractAddress: string;
|
|
1015
|
+
forwarderFactoryAddress: string;
|
|
1016
|
+
forwarderImplementationAddress: string;
|
|
1017
|
+
}
|
|
1018
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1019
|
+
name: string;
|
|
1020
|
+
family: CoinFamily;
|
|
1021
|
+
explorerUrl: string;
|
|
1022
|
+
accountExplorerUrl: string;
|
|
1023
|
+
chainId: number;
|
|
1024
|
+
nativeCoinOperationHashPrefix: string;
|
|
1025
|
+
batcherContractAddress: string;
|
|
1026
|
+
forwarderFactoryAddress: string;
|
|
1027
|
+
forwarderImplementationAddress: string;
|
|
1028
|
+
}
|
|
1029
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1030
|
+
name: string;
|
|
1031
|
+
family: CoinFamily;
|
|
1032
|
+
explorerUrl: string;
|
|
1033
|
+
accountExplorerUrl: string;
|
|
1034
|
+
chainId: number;
|
|
1035
|
+
nativeCoinOperationHashPrefix: string;
|
|
1036
|
+
batcherContractAddress: string;
|
|
1037
|
+
forwarderFactoryAddress: string;
|
|
1038
|
+
forwarderImplementationAddress: string;
|
|
1039
|
+
}
|
|
1040
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1041
|
+
name: string;
|
|
1042
|
+
family: CoinFamily;
|
|
1043
|
+
explorerUrl: string;
|
|
1044
|
+
accountExplorerUrl: string;
|
|
1045
|
+
chainId: number;
|
|
1046
|
+
nativeCoinOperationHashPrefix: string;
|
|
1047
|
+
batcherContractAddress: string;
|
|
1048
|
+
forwarderFactoryAddress: string;
|
|
1049
|
+
forwarderImplementationAddress: string;
|
|
1050
|
+
}
|
|
1051
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1052
|
+
name: string;
|
|
1053
|
+
family: CoinFamily;
|
|
1054
|
+
explorerUrl: string;
|
|
1055
|
+
accountExplorerUrl: string;
|
|
1056
|
+
chainId: number;
|
|
1057
|
+
nativeCoinOperationHashPrefix: string;
|
|
1058
|
+
batcherContractAddress: string;
|
|
1059
|
+
forwarderFactoryAddress: string;
|
|
1060
|
+
forwarderImplementationAddress: string;
|
|
1061
|
+
}
|
|
1062
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1063
|
+
name: string;
|
|
1064
|
+
family: CoinFamily;
|
|
1065
|
+
explorerUrl: string;
|
|
1066
|
+
accountExplorerUrl: string;
|
|
1067
|
+
chainId: number;
|
|
1068
|
+
nativeCoinOperationHashPrefix: string;
|
|
1069
|
+
batcherContractAddress: string;
|
|
1070
|
+
forwarderFactoryAddress: string;
|
|
1071
|
+
forwarderImplementationAddress: string;
|
|
1072
|
+
}
|
|
1073
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1074
|
+
name: string;
|
|
1075
|
+
family: CoinFamily;
|
|
1076
|
+
explorerUrl: string;
|
|
1077
|
+
accountExplorerUrl: string;
|
|
1078
|
+
chainId: number;
|
|
1079
|
+
nativeCoinOperationHashPrefix: string;
|
|
1080
|
+
batcherContractAddress: string;
|
|
1081
|
+
forwarderFactoryAddress: string;
|
|
1082
|
+
forwarderImplementationAddress: string;
|
|
1083
|
+
}
|
|
1084
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1085
|
+
name: string;
|
|
1086
|
+
family: CoinFamily;
|
|
1087
|
+
explorerUrl: string;
|
|
1088
|
+
accountExplorerUrl: string;
|
|
1089
|
+
chainId: number;
|
|
1090
|
+
nativeCoinOperationHashPrefix: string;
|
|
1091
|
+
batcherContractAddress: string;
|
|
1092
|
+
forwarderFactoryAddress: string;
|
|
1093
|
+
forwarderImplementationAddress: string;
|
|
1094
|
+
}
|
|
1095
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1096
|
+
name: string;
|
|
1097
|
+
family: CoinFamily;
|
|
1098
|
+
explorerUrl: string;
|
|
1099
|
+
accountExplorerUrl: string;
|
|
1100
|
+
chainId: number;
|
|
1101
|
+
nativeCoinOperationHashPrefix: string;
|
|
1102
|
+
tokenOperationHashPrefix: string;
|
|
1103
|
+
forwarderFactoryAddress: string;
|
|
1104
|
+
forwarderImplementationAddress: string;
|
|
1105
|
+
walletFactoryAddress: string;
|
|
1106
|
+
walletImplementationAddress: string;
|
|
1107
|
+
}
|
|
1108
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1109
|
+
name: string;
|
|
1110
|
+
family: CoinFamily;
|
|
1111
|
+
explorerUrl: string;
|
|
1112
|
+
accountExplorerUrl: string;
|
|
1113
|
+
chainId: number;
|
|
1114
|
+
nativeCoinOperationHashPrefix: string;
|
|
1115
|
+
tokenOperationHashPrefix: string;
|
|
1116
|
+
forwarderFactoryAddress: string;
|
|
1117
|
+
forwarderImplementationAddress: string;
|
|
1118
|
+
walletFactoryAddress: string;
|
|
1119
|
+
walletImplementationAddress: string;
|
|
669
1120
|
}
|
|
670
1121
|
export declare const Networks: {
|
|
671
1122
|
main: {
|
|
672
1123
|
ada: Readonly<Ada>;
|
|
673
1124
|
algorand: Readonly<Algorand>;
|
|
1125
|
+
apt: Readonly<Apt>;
|
|
1126
|
+
arbitrum: Readonly<Arbitrum>;
|
|
674
1127
|
atom: Readonly<Atom>;
|
|
675
1128
|
avalancheC: Readonly<AvalancheC>;
|
|
676
1129
|
avalancheP: Readonly<AvalancheP>;
|
|
1130
|
+
baby: Readonly<Baby>;
|
|
1131
|
+
basechain: Readonly<BaseChain>;
|
|
677
1132
|
bitcoin: Readonly<Bitcoin>;
|
|
678
1133
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
679
1134
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
680
1135
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1136
|
+
bera: Readonly<Berachain>;
|
|
681
1137
|
bld: Readonly<Bld>;
|
|
682
1138
|
bsc: Readonly<BinanceSmartChain>;
|
|
683
1139
|
casper: Readonly<Casper>;
|
|
684
1140
|
celo: Readonly<Celo>;
|
|
1141
|
+
coredao: Readonly<Coredao>;
|
|
1142
|
+
coreum: Readonly<Coreum>;
|
|
685
1143
|
dash: Readonly<Dash>;
|
|
686
1144
|
dogecoin: Readonly<Dogecoin>;
|
|
687
1145
|
dot: Readonly<Polkadot>;
|
|
@@ -692,41 +1150,64 @@ export declare const Networks: {
|
|
|
692
1150
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
693
1151
|
ethereumW: Readonly<EthereumW>;
|
|
694
1152
|
fiat: Readonly<Fiat>;
|
|
1153
|
+
flr: Readonly<Flare>;
|
|
695
1154
|
hash: Readonly<Hash>;
|
|
696
1155
|
hedera: Readonly<Hedera>;
|
|
1156
|
+
icp: Readonly<Icp>;
|
|
697
1157
|
injective: Readonly<Injective>;
|
|
1158
|
+
islm: Readonly<Islm>;
|
|
1159
|
+
kava: Readonly<Kava>;
|
|
1160
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
698
1161
|
litecoin: Readonly<Litecoin>;
|
|
699
1162
|
polygon: Readonly<Polygon>;
|
|
1163
|
+
oas: Readonly<Oas>;
|
|
700
1164
|
ofc: Readonly<Ofc>;
|
|
1165
|
+
optimism: Readonly<Optimism>;
|
|
701
1166
|
osmo: Readonly<Osmo>;
|
|
702
1167
|
rbtc: Readonly<Rbtc>;
|
|
1168
|
+
rune: Readonly<Rune>;
|
|
703
1169
|
stellar: Readonly<Stellar>;
|
|
704
1170
|
sei: Readonly<Sei>;
|
|
1171
|
+
sgb: Readonly<Songbird>;
|
|
705
1172
|
sol: Readonly<Sol>;
|
|
706
1173
|
sui: Readonly<Sui>;
|
|
707
1174
|
near: Readonly<Near>;
|
|
708
1175
|
stx: Readonly<Stx>;
|
|
709
1176
|
susd: Readonly<SUSD>;
|
|
1177
|
+
tao: Readonly<Bittensor>;
|
|
710
1178
|
tia: Readonly<Tia>;
|
|
1179
|
+
ton: Readonly<Ton>;
|
|
711
1180
|
trx: Readonly<Trx>;
|
|
1181
|
+
wemix: Readonly<Wemix>;
|
|
1182
|
+
xdc: Readonly<Xdc>;
|
|
712
1183
|
xrp: Readonly<Xrp>;
|
|
713
1184
|
xtz: Readonly<Xtz>;
|
|
714
1185
|
zCash: Readonly<ZCash>;
|
|
715
1186
|
zeta: Readonly<Zeta>;
|
|
1187
|
+
zkSync: Readonly<ZkSync>;
|
|
716
1188
|
};
|
|
717
1189
|
test: {
|
|
718
1190
|
ada: Readonly<AdaTestnet>;
|
|
719
1191
|
algorand: Readonly<AlgorandTestnet>;
|
|
1192
|
+
apt: Readonly<AptTestnet>;
|
|
1193
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
720
1194
|
atom: Readonly<AtomTestnet>;
|
|
721
1195
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
722
1196
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1197
|
+
baby: Readonly<BabyTestnet>;
|
|
1198
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
723
1199
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1200
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1201
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1202
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
724
1203
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
725
1204
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
726
1205
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1206
|
+
bera: Readonly<BerachainTestnet>;
|
|
727
1207
|
bld: Readonly<BldTestnet>;
|
|
728
1208
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
729
1209
|
casper: Readonly<CasperTestnet>;
|
|
1210
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
730
1211
|
celo: Readonly<CeloTestnet>;
|
|
731
1212
|
dash: Readonly<DashTestnet>;
|
|
732
1213
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
@@ -734,18 +1215,28 @@ export declare const Networks: {
|
|
|
734
1215
|
eCash: Readonly<ECashTestnet>;
|
|
735
1216
|
eos: Readonly<EosTestnet>;
|
|
736
1217
|
fiat: Readonly<FiatTestnet>;
|
|
1218
|
+
flr: Readonly<FlareTestnet>;
|
|
737
1219
|
pyrmont: Readonly<Pyrmont>;
|
|
738
1220
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
739
1221
|
hash: Readonly<HashTestnet>;
|
|
740
1222
|
hedera: Readonly<HederaTestnet>;
|
|
1223
|
+
icp: Readonly<IcpTestnet>;
|
|
741
1224
|
injective: Readonly<InjectiveTestnet>;
|
|
1225
|
+
islm: Readonly<IslmTestnet>;
|
|
1226
|
+
kava: Readonly<KavaTestnet>;
|
|
742
1227
|
kovan: Readonly<Kovan>;
|
|
743
1228
|
goerli: Readonly<Goerli>;
|
|
1229
|
+
holesky: Readonly<Holesky>;
|
|
1230
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
744
1231
|
litecoin: Readonly<LitecoinTestnet>;
|
|
745
1232
|
polygon: Readonly<PolygonTestnet>;
|
|
1233
|
+
oas: Readonly<OasTestnet>;
|
|
746
1234
|
ofc: Readonly<OfcTestnet>;
|
|
1235
|
+
optimism: Readonly<OptimismTestnet>;
|
|
747
1236
|
osmo: Readonly<OsmoTestnet>;
|
|
748
1237
|
rbtc: Readonly<RbtcTestnet>;
|
|
1238
|
+
rune: Readonly<RuneTestNet>;
|
|
1239
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
749
1240
|
stellar: Readonly<StellarTestnet>;
|
|
750
1241
|
sei: Readonly<SeiTestnet>;
|
|
751
1242
|
sol: Readonly<SolTestnet>;
|
|
@@ -753,12 +1244,18 @@ export declare const Networks: {
|
|
|
753
1244
|
near: Readonly<NearTestnet>;
|
|
754
1245
|
stx: Readonly<StxTestnet>;
|
|
755
1246
|
susd: Readonly<SUSDTestnet>;
|
|
1247
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1248
|
+
tao: Readonly<BittensorTestnet>;
|
|
756
1249
|
tia: Readonly<TiaTestnet>;
|
|
1250
|
+
ton: Readonly<TonTestnet>;
|
|
757
1251
|
trx: Readonly<TrxTestnet>;
|
|
1252
|
+
wemix: Readonly<WemixTestnet>;
|
|
1253
|
+
xdc: Readonly<XdcTestnet>;
|
|
758
1254
|
xrp: Readonly<XrpTestnet>;
|
|
759
1255
|
xtz: Readonly<XtzTestnet>;
|
|
760
1256
|
zCash: Readonly<ZCashTestnet>;
|
|
761
1257
|
zeta: Readonly<ZetaTestnet>;
|
|
1258
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
762
1259
|
};
|
|
763
1260
|
};
|
|
764
1261
|
export {};
|