@bitgo-beta/statics 10.0.1-alpha.27 → 10.0.1-alpha.271
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 +2665 -0
- package/dist/src/account.d.ts +328 -9
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +537 -52
- 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 +1264 -28
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1319 -45
- package/dist/src/coinFeatures.d.ts +75 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +423 -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 +1338 -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 +233 -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 +1266 -0
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +980 -1348
- package/dist/src/constants.d.ts +2 -0
- package/dist/src/constants.d.ts.map +1 -0
- package/dist/src/constants.js +5 -0
- 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 +570 -4
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +783 -50
- package/dist/src/ofc.d.ts +241 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +509 -14
- package/dist/src/tokenConfig.d.ts +78 -12
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +156 -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 -2737
- 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;
|
|
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;
|
|
370
495
|
chainId: number;
|
|
371
496
|
batcherContractAddress: string;
|
|
372
497
|
forwarderFactoryAddress: string;
|
|
373
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;
|
|
@@ -588,6 +870,9 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
588
870
|
forwarderImplementationAddress: string;
|
|
589
871
|
walletFactoryAddress: string;
|
|
590
872
|
walletImplementationAddress: string;
|
|
873
|
+
batcherContractAddress: string;
|
|
874
|
+
nativeCoinOperationHashPrefix: string;
|
|
875
|
+
tokenOperationHashPrefix: string;
|
|
591
876
|
}
|
|
592
877
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
593
878
|
name: string;
|
|
@@ -599,21 +884,250 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
599
884
|
forwarderImplementationAddress: string;
|
|
600
885
|
walletFactoryAddress: string;
|
|
601
886
|
walletImplementationAddress: string;
|
|
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
|
+
batcherContractAddress: string;
|
|
1023
|
+
forwarderFactoryAddress: string;
|
|
1024
|
+
forwarderImplementationAddress: string;
|
|
1025
|
+
}
|
|
1026
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1027
|
+
name: string;
|
|
1028
|
+
family: CoinFamily;
|
|
1029
|
+
explorerUrl: string;
|
|
1030
|
+
accountExplorerUrl: string;
|
|
1031
|
+
chainId: number;
|
|
1032
|
+
nativeCoinOperationHashPrefix: string;
|
|
1033
|
+
}
|
|
1034
|
+
declare class WemixTestnet 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 Flare extends Mainnet implements EthereumNetwork {
|
|
1046
|
+
name: string;
|
|
1047
|
+
family: CoinFamily;
|
|
1048
|
+
explorerUrl: string;
|
|
1049
|
+
accountExplorerUrl: string;
|
|
1050
|
+
chainId: number;
|
|
1051
|
+
nativeCoinOperationHashPrefix: string;
|
|
1052
|
+
}
|
|
1053
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1054
|
+
name: string;
|
|
1055
|
+
family: CoinFamily;
|
|
1056
|
+
explorerUrl: string;
|
|
1057
|
+
accountExplorerUrl: string;
|
|
1058
|
+
chainId: number;
|
|
1059
|
+
nativeCoinOperationHashPrefix: string;
|
|
1060
|
+
batcherContractAddress: string;
|
|
1061
|
+
forwarderFactoryAddress: string;
|
|
1062
|
+
forwarderImplementationAddress: string;
|
|
1063
|
+
}
|
|
1064
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1065
|
+
name: string;
|
|
1066
|
+
family: CoinFamily;
|
|
1067
|
+
explorerUrl: string;
|
|
1068
|
+
accountExplorerUrl: string;
|
|
1069
|
+
chainId: number;
|
|
1070
|
+
nativeCoinOperationHashPrefix: string;
|
|
1071
|
+
}
|
|
1072
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1073
|
+
name: string;
|
|
1074
|
+
family: CoinFamily;
|
|
1075
|
+
explorerUrl: string;
|
|
1076
|
+
accountExplorerUrl: string;
|
|
1077
|
+
chainId: number;
|
|
1078
|
+
nativeCoinOperationHashPrefix: string;
|
|
1079
|
+
batcherContractAddress: string;
|
|
1080
|
+
forwarderFactoryAddress: string;
|
|
1081
|
+
forwarderImplementationAddress: string;
|
|
1082
|
+
}
|
|
1083
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1084
|
+
name: string;
|
|
1085
|
+
family: CoinFamily;
|
|
1086
|
+
explorerUrl: string;
|
|
1087
|
+
accountExplorerUrl: string;
|
|
1088
|
+
chainId: number;
|
|
1089
|
+
nativeCoinOperationHashPrefix: string;
|
|
1090
|
+
tokenOperationHashPrefix: string;
|
|
1091
|
+
forwarderFactoryAddress: string;
|
|
1092
|
+
forwarderImplementationAddress: string;
|
|
1093
|
+
walletFactoryAddress: string;
|
|
1094
|
+
walletImplementationAddress: string;
|
|
1095
|
+
}
|
|
1096
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1097
|
+
name: string;
|
|
1098
|
+
family: CoinFamily;
|
|
1099
|
+
explorerUrl: string;
|
|
1100
|
+
accountExplorerUrl: string;
|
|
1101
|
+
chainId: number;
|
|
1102
|
+
nativeCoinOperationHashPrefix: string;
|
|
1103
|
+
tokenOperationHashPrefix: string;
|
|
1104
|
+
forwarderFactoryAddress: string;
|
|
1105
|
+
forwarderImplementationAddress: string;
|
|
1106
|
+
walletFactoryAddress: string;
|
|
1107
|
+
walletImplementationAddress: string;
|
|
602
1108
|
}
|
|
603
1109
|
export declare const Networks: {
|
|
604
1110
|
main: {
|
|
605
1111
|
ada: Readonly<Ada>;
|
|
606
1112
|
algorand: Readonly<Algorand>;
|
|
1113
|
+
apt: Readonly<Apt>;
|
|
1114
|
+
arbitrum: Readonly<Arbitrum>;
|
|
607
1115
|
atom: Readonly<Atom>;
|
|
608
1116
|
avalancheC: Readonly<AvalancheC>;
|
|
609
1117
|
avalancheP: Readonly<AvalancheP>;
|
|
1118
|
+
baby: Readonly<Baby>;
|
|
1119
|
+
basechain: Readonly<BaseChain>;
|
|
610
1120
|
bitcoin: Readonly<Bitcoin>;
|
|
611
1121
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
612
1122
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
613
1123
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1124
|
+
bera: Readonly<Berachain>;
|
|
1125
|
+
bld: Readonly<Bld>;
|
|
614
1126
|
bsc: Readonly<BinanceSmartChain>;
|
|
615
1127
|
casper: Readonly<Casper>;
|
|
616
1128
|
celo: Readonly<Celo>;
|
|
1129
|
+
coredao: Readonly<Coredao>;
|
|
1130
|
+
coreum: Readonly<Coreum>;
|
|
617
1131
|
dash: Readonly<Dash>;
|
|
618
1132
|
dogecoin: Readonly<Dogecoin>;
|
|
619
1133
|
dot: Readonly<Polkadot>;
|
|
@@ -624,34 +1138,64 @@ export declare const Networks: {
|
|
|
624
1138
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
625
1139
|
ethereumW: Readonly<EthereumW>;
|
|
626
1140
|
fiat: Readonly<Fiat>;
|
|
1141
|
+
flr: Readonly<Flare>;
|
|
1142
|
+
hash: Readonly<Hash>;
|
|
627
1143
|
hedera: Readonly<Hedera>;
|
|
1144
|
+
icp: Readonly<Icp>;
|
|
1145
|
+
injective: Readonly<Injective>;
|
|
1146
|
+
islm: Readonly<Islm>;
|
|
1147
|
+
kava: Readonly<Kava>;
|
|
1148
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
628
1149
|
litecoin: Readonly<Litecoin>;
|
|
629
1150
|
polygon: Readonly<Polygon>;
|
|
1151
|
+
oas: Readonly<Oas>;
|
|
630
1152
|
ofc: Readonly<Ofc>;
|
|
1153
|
+
optimism: Readonly<Optimism>;
|
|
1154
|
+
osmo: Readonly<Osmo>;
|
|
631
1155
|
rbtc: Readonly<Rbtc>;
|
|
1156
|
+
rune: Readonly<Rune>;
|
|
632
1157
|
stellar: Readonly<Stellar>;
|
|
1158
|
+
sei: Readonly<Sei>;
|
|
1159
|
+
sgb: Readonly<Songbird>;
|
|
633
1160
|
sol: Readonly<Sol>;
|
|
634
1161
|
sui: Readonly<Sui>;
|
|
635
1162
|
near: Readonly<Near>;
|
|
636
1163
|
stx: Readonly<Stx>;
|
|
637
1164
|
susd: Readonly<SUSD>;
|
|
1165
|
+
tao: Readonly<Bittensor>;
|
|
1166
|
+
tia: Readonly<Tia>;
|
|
1167
|
+
ton: Readonly<Ton>;
|
|
638
1168
|
trx: Readonly<Trx>;
|
|
1169
|
+
wemix: Readonly<Wemix>;
|
|
1170
|
+
xdc: Readonly<Xdc>;
|
|
639
1171
|
xrp: Readonly<Xrp>;
|
|
640
1172
|
xtz: Readonly<Xtz>;
|
|
641
1173
|
zCash: Readonly<ZCash>;
|
|
1174
|
+
zeta: Readonly<Zeta>;
|
|
1175
|
+
zkSync: Readonly<ZkSync>;
|
|
642
1176
|
};
|
|
643
1177
|
test: {
|
|
644
1178
|
ada: Readonly<AdaTestnet>;
|
|
645
1179
|
algorand: Readonly<AlgorandTestnet>;
|
|
1180
|
+
apt: Readonly<AptTestnet>;
|
|
1181
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
646
1182
|
atom: Readonly<AtomTestnet>;
|
|
647
1183
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
648
1184
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1185
|
+
baby: Readonly<BabyTestnet>;
|
|
1186
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
649
1187
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1188
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1189
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1190
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
650
1191
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
651
1192
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
652
1193
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1194
|
+
bera: Readonly<BerachainTestnet>;
|
|
1195
|
+
bld: Readonly<BldTestnet>;
|
|
653
1196
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
654
1197
|
casper: Readonly<CasperTestnet>;
|
|
1198
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
655
1199
|
celo: Readonly<CeloTestnet>;
|
|
656
1200
|
dash: Readonly<DashTestnet>;
|
|
657
1201
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
@@ -659,25 +1203,47 @@ export declare const Networks: {
|
|
|
659
1203
|
eCash: Readonly<ECashTestnet>;
|
|
660
1204
|
eos: Readonly<EosTestnet>;
|
|
661
1205
|
fiat: Readonly<FiatTestnet>;
|
|
1206
|
+
flr: Readonly<FlareTestnet>;
|
|
662
1207
|
pyrmont: Readonly<Pyrmont>;
|
|
663
1208
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
1209
|
+
hash: Readonly<HashTestnet>;
|
|
664
1210
|
hedera: Readonly<HederaTestnet>;
|
|
1211
|
+
icp: Readonly<IcpTestnet>;
|
|
1212
|
+
injective: Readonly<InjectiveTestnet>;
|
|
1213
|
+
islm: Readonly<IslmTestnet>;
|
|
1214
|
+
kava: Readonly<KavaTestnet>;
|
|
665
1215
|
kovan: Readonly<Kovan>;
|
|
666
1216
|
goerli: Readonly<Goerli>;
|
|
1217
|
+
holesky: Readonly<Holesky>;
|
|
1218
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
667
1219
|
litecoin: Readonly<LitecoinTestnet>;
|
|
668
1220
|
polygon: Readonly<PolygonTestnet>;
|
|
1221
|
+
oas: Readonly<OasTestnet>;
|
|
669
1222
|
ofc: Readonly<OfcTestnet>;
|
|
1223
|
+
optimism: Readonly<OptimismTestnet>;
|
|
1224
|
+
osmo: Readonly<OsmoTestnet>;
|
|
670
1225
|
rbtc: Readonly<RbtcTestnet>;
|
|
1226
|
+
rune: Readonly<RuneTestNet>;
|
|
1227
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
671
1228
|
stellar: Readonly<StellarTestnet>;
|
|
1229
|
+
sei: Readonly<SeiTestnet>;
|
|
672
1230
|
sol: Readonly<SolTestnet>;
|
|
673
1231
|
sui: Readonly<SuiTestnet>;
|
|
674
1232
|
near: Readonly<NearTestnet>;
|
|
675
1233
|
stx: Readonly<StxTestnet>;
|
|
676
1234
|
susd: Readonly<SUSDTestnet>;
|
|
1235
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1236
|
+
tao: Readonly<BittensorTestnet>;
|
|
1237
|
+
tia: Readonly<TiaTestnet>;
|
|
1238
|
+
ton: Readonly<TonTestnet>;
|
|
677
1239
|
trx: Readonly<TrxTestnet>;
|
|
1240
|
+
wemix: Readonly<WemixTestnet>;
|
|
1241
|
+
xdc: Readonly<XdcTestnet>;
|
|
678
1242
|
xrp: Readonly<XrpTestnet>;
|
|
679
1243
|
xtz: Readonly<XtzTestnet>;
|
|
680
1244
|
zCash: Readonly<ZCashTestnet>;
|
|
1245
|
+
zeta: Readonly<ZetaTestnet>;
|
|
1246
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
681
1247
|
};
|
|
682
1248
|
};
|
|
683
1249
|
export {};
|