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