@bitgo-beta/statics 15.1.1-beta.7 → 15.1.1-beta.700
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 +2612 -0
- package/dist/src/account.d.ts +278 -11
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +461 -53
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +8 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +8 -3
- package/dist/src/base.d.ts +1234 -29
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1284 -46
- 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 +15 -0
- package/dist/src/coins.d.ts +0 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +3087 -1327
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +12 -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 +556 -4
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +759 -38
- package/dist/src/ofc.d.ts +240 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +508 -14
- package/dist/src/tokenConfig.d.ts +59 -13
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +128 -7
- 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 -2744
- package/package.json +2 -2
- package/dist/resources/dot/index.d.ts +0 -3
- package/dist/resources/dot/index.d.ts.map +0 -1
- package/dist/resources/dot/index.js +0 -15
- package/dist/resources/dot/mainnet.d.ts +0 -2
- package/dist/resources/dot/mainnet.d.ts.map +0 -1
- package/dist/resources/dot/mainnet.js +0 -5
- package/dist/resources/dot/westend.d.ts +0 -2
- package/dist/resources/dot/westend.d.ts.map +0 -1
- package/dist/resources/dot/westend.js +0 -5
- package/resources/dot/index.ts +0 -2
- package/resources/dot/mainnet.ts +0 -2
- package/resources/dot/westend.ts +0 -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,20 +48,22 @@ 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;
|
|
54
65
|
readonly specVersion: number;
|
|
55
66
|
readonly chainName: string;
|
|
56
|
-
readonly metadataRpc: `0x${string}`;
|
|
57
67
|
readonly txVersion: number;
|
|
58
68
|
}
|
|
59
69
|
export interface EthereumNetwork extends AccountNetwork {
|
|
@@ -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,56 @@ 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
|
+
}
|
|
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
|
+
}
|
|
113
175
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
176
|
name: string;
|
|
115
177
|
family: CoinFamily;
|
|
@@ -137,6 +199,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
199
|
alias: string;
|
|
138
200
|
vm: string;
|
|
139
201
|
txFee: string;
|
|
202
|
+
maxImportFee: string;
|
|
140
203
|
createSubnetTx: string;
|
|
141
204
|
createChainTx: string;
|
|
142
205
|
creationTxFee: string;
|
|
@@ -162,6 +225,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
225
|
hrp: string;
|
|
163
226
|
vm: string;
|
|
164
227
|
txFee: string;
|
|
228
|
+
maxImportFee: string;
|
|
165
229
|
createSubnetTx: string;
|
|
166
230
|
createChainTx: string;
|
|
167
231
|
creationTxFee: string;
|
|
@@ -180,6 +244,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
244
|
explorerUrl: string;
|
|
181
245
|
accountExplorerUrl: string;
|
|
182
246
|
chainId: number;
|
|
247
|
+
nativeCoinOperationHashPrefix: string;
|
|
248
|
+
tokenOperationHashPrefix: string;
|
|
249
|
+
batcherContractAddress: string;
|
|
183
250
|
}
|
|
184
251
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
252
|
name: string;
|
|
@@ -187,6 +254,23 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
254
|
explorerUrl: string;
|
|
188
255
|
accountExplorerUrl: string;
|
|
189
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;
|
|
190
274
|
}
|
|
191
275
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
276
|
name: string;
|
|
@@ -200,6 +284,24 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
200
284
|
utxolibName: string;
|
|
201
285
|
explorerUrl: string;
|
|
202
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
|
+
}
|
|
203
305
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
306
|
name: string;
|
|
205
307
|
family: CoinFamily;
|
|
@@ -280,7 +382,6 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
280
382
|
genesisHash: string;
|
|
281
383
|
specVersion: number;
|
|
282
384
|
chainName: string;
|
|
283
|
-
metadataRpc: `0x${string}`;
|
|
284
385
|
txVersion: number;
|
|
285
386
|
}
|
|
286
387
|
declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
@@ -291,7 +392,6 @@ declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
|
291
392
|
genesisHash: string;
|
|
292
393
|
specVersion: number;
|
|
293
394
|
chainName: string;
|
|
294
|
-
metadataRpc: `0x${string}`;
|
|
295
395
|
txVersion: number;
|
|
296
396
|
}
|
|
297
397
|
declare class Celo extends Mainnet implements EthereumNetwork {
|
|
@@ -300,6 +400,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
300
400
|
explorerUrl: string;
|
|
301
401
|
accountExplorerUrl: string;
|
|
302
402
|
chainId: number;
|
|
403
|
+
nativeCoinOperationHashPrefix: string;
|
|
404
|
+
tokenOperationHashPrefix: string;
|
|
303
405
|
}
|
|
304
406
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
305
407
|
name: string;
|
|
@@ -307,6 +409,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
307
409
|
explorerUrl: string;
|
|
308
410
|
accountExplorerUrl: string;
|
|
309
411
|
chainId: number;
|
|
412
|
+
nativeCoinOperationHashPrefix: string;
|
|
413
|
+
tokenOperationHashPrefix: string;
|
|
310
414
|
}
|
|
311
415
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
312
416
|
name: string;
|
|
@@ -325,10 +429,13 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
325
429
|
family: CoinFamily;
|
|
326
430
|
explorerUrl: string;
|
|
327
431
|
accountExplorerUrl: string;
|
|
432
|
+
blockExplorerUrl: string;
|
|
328
433
|
chainId: number;
|
|
329
434
|
batcherContractAddress: string;
|
|
330
435
|
forwarderFactoryAddress: string;
|
|
331
436
|
forwarderImplementationAddress: string;
|
|
437
|
+
nativeCoinOperationHashPrefix: string;
|
|
438
|
+
tokenOperationHashPrefix: string;
|
|
332
439
|
}
|
|
333
440
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
334
441
|
name: string;
|
|
@@ -345,6 +452,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
345
452
|
batcherContractAddress: string;
|
|
346
453
|
forwarderFactoryAddress: string;
|
|
347
454
|
forwarderImplementationAddress: string;
|
|
455
|
+
nativeCoinOperationHashPrefix: string;
|
|
456
|
+
tokenOperationHashPrefix: string;
|
|
348
457
|
}
|
|
349
458
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
350
459
|
name: string;
|
|
@@ -361,16 +470,34 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
361
470
|
batcherContractAddress: string;
|
|
362
471
|
forwarderFactoryAddress: string;
|
|
363
472
|
forwarderImplementationAddress: string;
|
|
473
|
+
nativeCoinOperationHashPrefix: string;
|
|
474
|
+
tokenOperationHashPrefix: string;
|
|
364
475
|
}
|
|
365
476
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
366
477
|
name: string;
|
|
367
478
|
family: CoinFamily;
|
|
368
479
|
explorerUrl: string;
|
|
369
480
|
accountExplorerUrl: string;
|
|
481
|
+
blockExplorerUrl: string;
|
|
370
482
|
chainId: number;
|
|
371
483
|
batcherContractAddress: string;
|
|
372
484
|
forwarderFactoryAddress: string;
|
|
373
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;
|
|
495
|
+
chainId: number;
|
|
496
|
+
batcherContractAddress: string;
|
|
497
|
+
forwarderFactoryAddress: string;
|
|
498
|
+
forwarderImplementationAddress: string;
|
|
499
|
+
nativeCoinOperationHashPrefix: string;
|
|
500
|
+
tokenOperationHashPrefix: string;
|
|
374
501
|
}
|
|
375
502
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
503
|
name: string;
|
|
@@ -378,6 +505,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
505
|
explorerUrl: string;
|
|
379
506
|
accountExplorerUrl: string;
|
|
380
507
|
chainId: number;
|
|
508
|
+
nativeCoinOperationHashPrefix: string;
|
|
509
|
+
tokenOperationHashPrefix: string;
|
|
381
510
|
}
|
|
382
511
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
512
|
name: string;
|
|
@@ -385,6 +514,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
514
|
explorerUrl: string;
|
|
386
515
|
accountExplorerUrl: string;
|
|
387
516
|
chainId: number;
|
|
517
|
+
nativeCoinOperationHashPrefix: string;
|
|
518
|
+
tokenOperationHashPrefix: string;
|
|
388
519
|
}
|
|
389
520
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
521
|
name: string;
|
|
@@ -434,6 +565,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
565
|
explorerUrl: string;
|
|
435
566
|
accountExplorerUrl: string;
|
|
436
567
|
chainId: number;
|
|
568
|
+
nativeCoinOperationHashPrefix: string;
|
|
569
|
+
tokenOperationHashPrefix: string;
|
|
437
570
|
}
|
|
438
571
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
572
|
name: string;
|
|
@@ -441,6 +574,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
574
|
explorerUrl: string;
|
|
442
575
|
accountExplorerUrl: string;
|
|
443
576
|
chainId: number;
|
|
577
|
+
nativeCoinOperationHashPrefix: string;
|
|
578
|
+
tokenOperationHashPrefix: string;
|
|
444
579
|
}
|
|
445
580
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
581
|
name: string;
|
|
@@ -482,6 +617,136 @@ declare class AtomTestnet extends Testnet implements AccountNetwork {
|
|
|
482
617
|
family: CoinFamily;
|
|
483
618
|
explorerUrl: string;
|
|
484
619
|
}
|
|
620
|
+
declare class Osmo extends Mainnet implements AccountNetwork {
|
|
621
|
+
name: string;
|
|
622
|
+
family: CoinFamily;
|
|
623
|
+
explorerUrl: string;
|
|
624
|
+
}
|
|
625
|
+
declare class OsmoTestnet extends Testnet implements AccountNetwork {
|
|
626
|
+
name: string;
|
|
627
|
+
family: CoinFamily;
|
|
628
|
+
explorerUrl: string;
|
|
629
|
+
}
|
|
630
|
+
declare class Tia extends Mainnet implements AccountNetwork {
|
|
631
|
+
name: string;
|
|
632
|
+
family: CoinFamily;
|
|
633
|
+
explorerUrl: string;
|
|
634
|
+
}
|
|
635
|
+
declare class TiaTestnet extends Testnet implements AccountNetwork {
|
|
636
|
+
name: string;
|
|
637
|
+
family: CoinFamily;
|
|
638
|
+
explorerUrl: string;
|
|
639
|
+
}
|
|
640
|
+
declare class Hash extends Mainnet implements AccountNetwork {
|
|
641
|
+
name: string;
|
|
642
|
+
family: CoinFamily;
|
|
643
|
+
explorerUrl: string;
|
|
644
|
+
}
|
|
645
|
+
declare class HashTestnet extends Testnet implements AccountNetwork {
|
|
646
|
+
name: string;
|
|
647
|
+
family: CoinFamily;
|
|
648
|
+
explorerUrl: string;
|
|
649
|
+
}
|
|
650
|
+
declare class Bld extends Mainnet implements AccountNetwork {
|
|
651
|
+
name: string;
|
|
652
|
+
family: CoinFamily;
|
|
653
|
+
explorerUrl: string;
|
|
654
|
+
}
|
|
655
|
+
declare class BldTestnet extends Testnet implements AccountNetwork {
|
|
656
|
+
name: string;
|
|
657
|
+
family: CoinFamily;
|
|
658
|
+
explorerUrl: string;
|
|
659
|
+
}
|
|
660
|
+
declare class Sei extends Mainnet implements AccountNetwork {
|
|
661
|
+
name: string;
|
|
662
|
+
family: CoinFamily;
|
|
663
|
+
explorerUrl: string;
|
|
664
|
+
}
|
|
665
|
+
declare class SeiTestnet extends Testnet implements AccountNetwork {
|
|
666
|
+
name: string;
|
|
667
|
+
family: CoinFamily;
|
|
668
|
+
explorerUrl: string;
|
|
669
|
+
}
|
|
670
|
+
declare class Zeta extends Mainnet implements AccountNetwork {
|
|
671
|
+
name: string;
|
|
672
|
+
family: CoinFamily;
|
|
673
|
+
explorerUrl: string;
|
|
674
|
+
}
|
|
675
|
+
declare class ZetaTestnet extends Testnet implements AccountNetwork {
|
|
676
|
+
name: string;
|
|
677
|
+
family: CoinFamily;
|
|
678
|
+
explorerUrl: string;
|
|
679
|
+
}
|
|
680
|
+
declare class Injective extends Mainnet implements AccountNetwork {
|
|
681
|
+
name: string;
|
|
682
|
+
family: CoinFamily;
|
|
683
|
+
explorerUrl: string;
|
|
684
|
+
}
|
|
685
|
+
declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
686
|
+
name: string;
|
|
687
|
+
family: CoinFamily;
|
|
688
|
+
explorerUrl: string;
|
|
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
|
+
}
|
|
485
750
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
486
751
|
name: string;
|
|
487
752
|
family: CoinFamily;
|
|
@@ -516,9 +781,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
516
781
|
family: CoinFamily;
|
|
517
782
|
explorerUrl: undefined;
|
|
518
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
|
+
}
|
|
519
799
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
520
800
|
name: string;
|
|
521
801
|
family: CoinFamily;
|
|
802
|
+
accountExplorerUrl: string;
|
|
522
803
|
explorerUrl: string;
|
|
523
804
|
maxFeeLimit: string;
|
|
524
805
|
contractCallFeeLimit: string;
|
|
@@ -526,6 +807,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
526
807
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
527
808
|
name: string;
|
|
528
809
|
family: CoinFamily;
|
|
810
|
+
accountExplorerUrl: string;
|
|
529
811
|
explorerUrl: string;
|
|
530
812
|
maxFeeLimit: string;
|
|
531
813
|
contractCallFeeLimit: string;
|
|
@@ -589,6 +871,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
589
871
|
walletFactoryAddress: string;
|
|
590
872
|
walletImplementationAddress: string;
|
|
591
873
|
batcherContractAddress: string;
|
|
874
|
+
nativeCoinOperationHashPrefix: string;
|
|
875
|
+
tokenOperationHashPrefix: string;
|
|
592
876
|
}
|
|
593
877
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
594
878
|
name: string;
|
|
@@ -601,21 +885,237 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
601
885
|
walletFactoryAddress: string;
|
|
602
886
|
walletImplementationAddress: string;
|
|
603
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
|
+
}
|
|
1015
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1016
|
+
name: string;
|
|
1017
|
+
family: CoinFamily;
|
|
1018
|
+
explorerUrl: string;
|
|
1019
|
+
accountExplorerUrl: string;
|
|
1020
|
+
chainId: number;
|
|
1021
|
+
nativeCoinOperationHashPrefix: string;
|
|
1022
|
+
}
|
|
1023
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1024
|
+
name: string;
|
|
1025
|
+
family: CoinFamily;
|
|
1026
|
+
explorerUrl: string;
|
|
1027
|
+
accountExplorerUrl: string;
|
|
1028
|
+
chainId: number;
|
|
1029
|
+
nativeCoinOperationHashPrefix: string;
|
|
1030
|
+
}
|
|
1031
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1032
|
+
name: string;
|
|
1033
|
+
family: CoinFamily;
|
|
1034
|
+
explorerUrl: string;
|
|
1035
|
+
accountExplorerUrl: string;
|
|
1036
|
+
chainId: number;
|
|
1037
|
+
nativeCoinOperationHashPrefix: string;
|
|
1038
|
+
}
|
|
1039
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1040
|
+
name: string;
|
|
1041
|
+
family: CoinFamily;
|
|
1042
|
+
explorerUrl: string;
|
|
1043
|
+
accountExplorerUrl: string;
|
|
1044
|
+
chainId: number;
|
|
1045
|
+
nativeCoinOperationHashPrefix: string;
|
|
1046
|
+
}
|
|
1047
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1048
|
+
name: string;
|
|
1049
|
+
family: CoinFamily;
|
|
1050
|
+
explorerUrl: string;
|
|
1051
|
+
accountExplorerUrl: string;
|
|
1052
|
+
chainId: number;
|
|
1053
|
+
nativeCoinOperationHashPrefix: string;
|
|
1054
|
+
}
|
|
1055
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1056
|
+
name: string;
|
|
1057
|
+
family: CoinFamily;
|
|
1058
|
+
explorerUrl: string;
|
|
1059
|
+
accountExplorerUrl: string;
|
|
1060
|
+
chainId: number;
|
|
1061
|
+
nativeCoinOperationHashPrefix: string;
|
|
1062
|
+
}
|
|
1063
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1064
|
+
name: string;
|
|
1065
|
+
family: CoinFamily;
|
|
1066
|
+
explorerUrl: string;
|
|
1067
|
+
accountExplorerUrl: string;
|
|
1068
|
+
chainId: number;
|
|
1069
|
+
nativeCoinOperationHashPrefix: string;
|
|
1070
|
+
}
|
|
1071
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1072
|
+
name: string;
|
|
1073
|
+
family: CoinFamily;
|
|
1074
|
+
explorerUrl: string;
|
|
1075
|
+
accountExplorerUrl: string;
|
|
1076
|
+
chainId: number;
|
|
1077
|
+
nativeCoinOperationHashPrefix: string;
|
|
1078
|
+
tokenOperationHashPrefix: string;
|
|
1079
|
+
forwarderFactoryAddress: string;
|
|
1080
|
+
forwarderImplementationAddress: string;
|
|
1081
|
+
walletFactoryAddress: string;
|
|
1082
|
+
walletImplementationAddress: string;
|
|
1083
|
+
}
|
|
1084
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1085
|
+
name: string;
|
|
1086
|
+
family: CoinFamily;
|
|
1087
|
+
explorerUrl: string;
|
|
1088
|
+
accountExplorerUrl: string;
|
|
1089
|
+
chainId: number;
|
|
1090
|
+
nativeCoinOperationHashPrefix: string;
|
|
1091
|
+
tokenOperationHashPrefix: string;
|
|
1092
|
+
forwarderFactoryAddress: string;
|
|
1093
|
+
forwarderImplementationAddress: string;
|
|
1094
|
+
walletFactoryAddress: string;
|
|
1095
|
+
walletImplementationAddress: string;
|
|
604
1096
|
}
|
|
605
1097
|
export declare const Networks: {
|
|
606
1098
|
main: {
|
|
607
1099
|
ada: Readonly<Ada>;
|
|
608
1100
|
algorand: Readonly<Algorand>;
|
|
1101
|
+
apt: Readonly<Apt>;
|
|
1102
|
+
arbitrum: Readonly<Arbitrum>;
|
|
609
1103
|
atom: Readonly<Atom>;
|
|
610
1104
|
avalancheC: Readonly<AvalancheC>;
|
|
611
1105
|
avalancheP: Readonly<AvalancheP>;
|
|
1106
|
+
baby: Readonly<Baby>;
|
|
1107
|
+
basechain: Readonly<BaseChain>;
|
|
612
1108
|
bitcoin: Readonly<Bitcoin>;
|
|
613
1109
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
614
1110
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
615
1111
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1112
|
+
bera: Readonly<Berachain>;
|
|
1113
|
+
bld: Readonly<Bld>;
|
|
616
1114
|
bsc: Readonly<BinanceSmartChain>;
|
|
617
1115
|
casper: Readonly<Casper>;
|
|
618
1116
|
celo: Readonly<Celo>;
|
|
1117
|
+
coredao: Readonly<Coredao>;
|
|
1118
|
+
coreum: Readonly<Coreum>;
|
|
619
1119
|
dash: Readonly<Dash>;
|
|
620
1120
|
dogecoin: Readonly<Dogecoin>;
|
|
621
1121
|
dot: Readonly<Polkadot>;
|
|
@@ -626,34 +1126,64 @@ export declare const Networks: {
|
|
|
626
1126
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
627
1127
|
ethereumW: Readonly<EthereumW>;
|
|
628
1128
|
fiat: Readonly<Fiat>;
|
|
1129
|
+
flr: Readonly<Flare>;
|
|
1130
|
+
hash: Readonly<Hash>;
|
|
629
1131
|
hedera: Readonly<Hedera>;
|
|
1132
|
+
icp: Readonly<Icp>;
|
|
1133
|
+
injective: Readonly<Injective>;
|
|
1134
|
+
islm: Readonly<Islm>;
|
|
1135
|
+
kava: Readonly<Kava>;
|
|
1136
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
630
1137
|
litecoin: Readonly<Litecoin>;
|
|
631
1138
|
polygon: Readonly<Polygon>;
|
|
1139
|
+
oas: Readonly<Oas>;
|
|
632
1140
|
ofc: Readonly<Ofc>;
|
|
1141
|
+
optimism: Readonly<Optimism>;
|
|
1142
|
+
osmo: Readonly<Osmo>;
|
|
633
1143
|
rbtc: Readonly<Rbtc>;
|
|
1144
|
+
rune: Readonly<Rune>;
|
|
634
1145
|
stellar: Readonly<Stellar>;
|
|
1146
|
+
sei: Readonly<Sei>;
|
|
1147
|
+
sgb: Readonly<Songbird>;
|
|
635
1148
|
sol: Readonly<Sol>;
|
|
636
1149
|
sui: Readonly<Sui>;
|
|
637
1150
|
near: Readonly<Near>;
|
|
638
1151
|
stx: Readonly<Stx>;
|
|
639
1152
|
susd: Readonly<SUSD>;
|
|
1153
|
+
tao: Readonly<Bittensor>;
|
|
1154
|
+
tia: Readonly<Tia>;
|
|
1155
|
+
ton: Readonly<Ton>;
|
|
640
1156
|
trx: Readonly<Trx>;
|
|
1157
|
+
wemix: Readonly<Wemix>;
|
|
1158
|
+
xdc: Readonly<Xdc>;
|
|
641
1159
|
xrp: Readonly<Xrp>;
|
|
642
1160
|
xtz: Readonly<Xtz>;
|
|
643
1161
|
zCash: Readonly<ZCash>;
|
|
1162
|
+
zeta: Readonly<Zeta>;
|
|
1163
|
+
zkSync: Readonly<ZkSync>;
|
|
644
1164
|
};
|
|
645
1165
|
test: {
|
|
646
1166
|
ada: Readonly<AdaTestnet>;
|
|
647
1167
|
algorand: Readonly<AlgorandTestnet>;
|
|
1168
|
+
apt: Readonly<AptTestnet>;
|
|
1169
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
648
1170
|
atom: Readonly<AtomTestnet>;
|
|
649
1171
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
650
1172
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1173
|
+
baby: Readonly<BabyTestnet>;
|
|
1174
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
651
1175
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1176
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1177
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1178
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
652
1179
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
653
1180
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
654
1181
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1182
|
+
bera: Readonly<BerachainTestnet>;
|
|
1183
|
+
bld: Readonly<BldTestnet>;
|
|
655
1184
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
656
1185
|
casper: Readonly<CasperTestnet>;
|
|
1186
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
657
1187
|
celo: Readonly<CeloTestnet>;
|
|
658
1188
|
dash: Readonly<DashTestnet>;
|
|
659
1189
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
@@ -661,25 +1191,47 @@ export declare const Networks: {
|
|
|
661
1191
|
eCash: Readonly<ECashTestnet>;
|
|
662
1192
|
eos: Readonly<EosTestnet>;
|
|
663
1193
|
fiat: Readonly<FiatTestnet>;
|
|
1194
|
+
flr: Readonly<FlareTestnet>;
|
|
664
1195
|
pyrmont: Readonly<Pyrmont>;
|
|
665
1196
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
1197
|
+
hash: Readonly<HashTestnet>;
|
|
666
1198
|
hedera: Readonly<HederaTestnet>;
|
|
1199
|
+
icp: Readonly<IcpTestnet>;
|
|
1200
|
+
injective: Readonly<InjectiveTestnet>;
|
|
1201
|
+
islm: Readonly<IslmTestnet>;
|
|
1202
|
+
kava: Readonly<KavaTestnet>;
|
|
667
1203
|
kovan: Readonly<Kovan>;
|
|
668
1204
|
goerli: Readonly<Goerli>;
|
|
1205
|
+
holesky: Readonly<Holesky>;
|
|
1206
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
669
1207
|
litecoin: Readonly<LitecoinTestnet>;
|
|
670
1208
|
polygon: Readonly<PolygonTestnet>;
|
|
1209
|
+
oas: Readonly<OasTestnet>;
|
|
671
1210
|
ofc: Readonly<OfcTestnet>;
|
|
1211
|
+
optimism: Readonly<OptimismTestnet>;
|
|
1212
|
+
osmo: Readonly<OsmoTestnet>;
|
|
672
1213
|
rbtc: Readonly<RbtcTestnet>;
|
|
1214
|
+
rune: Readonly<RuneTestNet>;
|
|
1215
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
673
1216
|
stellar: Readonly<StellarTestnet>;
|
|
1217
|
+
sei: Readonly<SeiTestnet>;
|
|
674
1218
|
sol: Readonly<SolTestnet>;
|
|
675
1219
|
sui: Readonly<SuiTestnet>;
|
|
676
1220
|
near: Readonly<NearTestnet>;
|
|
677
1221
|
stx: Readonly<StxTestnet>;
|
|
678
1222
|
susd: Readonly<SUSDTestnet>;
|
|
1223
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1224
|
+
tao: Readonly<BittensorTestnet>;
|
|
1225
|
+
tia: Readonly<TiaTestnet>;
|
|
1226
|
+
ton: Readonly<TonTestnet>;
|
|
679
1227
|
trx: Readonly<TrxTestnet>;
|
|
1228
|
+
wemix: Readonly<WemixTestnet>;
|
|
1229
|
+
xdc: Readonly<XdcTestnet>;
|
|
680
1230
|
xrp: Readonly<XrpTestnet>;
|
|
681
1231
|
xtz: Readonly<XtzTestnet>;
|
|
682
1232
|
zCash: Readonly<ZCashTestnet>;
|
|
1233
|
+
zeta: Readonly<ZetaTestnet>;
|
|
1234
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
683
1235
|
};
|
|
684
1236
|
};
|
|
685
1237
|
export {};
|