@bitgo-beta/statics 15.1.1-beta.86 → 15.1.1-beta.861
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 +2741 -0
- package/dist/src/account.d.ts +399 -21
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +656 -78
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +6 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +6 -3
- package/dist/src/base.d.ts +1333 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1379 -50
- package/dist/src/coinFeatures.d.ts +80 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +468 -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 +95 -0
- package/dist/src/coins/bscTokens.d.ts +2 -0
- package/dist/src/coins/bscTokens.d.ts.map +1 -0
- package/dist/src/coins/bscTokens.js +138 -0
- package/dist/src/coins/erc20Coins.d.ts +2 -0
- package/dist/src/coins/erc20Coins.d.ts.map +1 -0
- package/dist/src/coins/erc20Coins.js +1371 -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 +416 -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 +1299 -0
- package/dist/src/coins/polygonTokens.d.ts +2 -0
- package/dist/src/coins/polygonTokens.d.ts.map +1 -0
- package/dist/src/coins/polygonTokens.js +136 -0
- package/dist/src/coins/sip10Tokens.d.ts +2 -0
- package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
- package/dist/src/coins/sip10Tokens.js +25 -0
- package/dist/src/coins/solTokens.d.ts +2 -0
- package/dist/src/coins/solTokens.d.ts.map +1 -0
- package/dist/src/coins/solTokens.js +332 -0
- package/dist/src/coins.d.ts +10 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +572 -1512
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/constants.d.ts.map +1 -1
- package/dist/src/constants.js +3 -2
- package/dist/src/gatekeep.d.ts +2 -0
- package/dist/src/gatekeep.d.ts.map +1 -0
- package/dist/src/gatekeep.js +1792 -0
- package/dist/src/index.d.ts +4 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +19 -3
- package/dist/src/lightning.d.ts +43 -0
- package/dist/src/lightning.d.ts.map +1 -0
- package/dist/src/lightning.js +60 -0
- package/dist/src/map.d.ts +4 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +93 -19
- package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
- package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
- package/dist/src/networkFeatureMapForTokens.js +27 -0
- package/dist/src/networks.d.ts +605 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +815 -44
- package/dist/src/ofc.d.ts +330 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +688 -14
- package/dist/src/tokenConfig.d.ts +116 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +267 -115
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +77 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/src/networks.d.ts
CHANGED
|
@@ -12,6 +12,14 @@ export declare abstract class BaseNetwork {
|
|
|
12
12
|
export interface UtxoNetwork extends BaseNetwork {
|
|
13
13
|
utxolibName: string;
|
|
14
14
|
}
|
|
15
|
+
export interface LightningNetwork extends UtxoNetwork {
|
|
16
|
+
/**
|
|
17
|
+
* The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
18
|
+
* between the user's extended private key and the Lightning service. This key facilitates secure communication
|
|
19
|
+
* by enabling the creation of a shared secret for encryption and decryption of data.
|
|
20
|
+
*/
|
|
21
|
+
lightningServicePubKey: string;
|
|
22
|
+
}
|
|
15
23
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
24
|
utxolibName: string;
|
|
17
25
|
poolDeposit: number;
|
|
@@ -40,6 +48,7 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
48
|
readonly minDelegationFee: string;
|
|
41
49
|
readonly avaxAssetID: string;
|
|
42
50
|
readonly txFee: string;
|
|
51
|
+
readonly maxImportFee: string;
|
|
43
52
|
}
|
|
44
53
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
54
|
readonly accountExplorerUrl?: string;
|
|
@@ -48,7 +57,8 @@ export interface AccountNetwork extends BaseNetwork {
|
|
|
48
57
|
/**
|
|
49
58
|
* Specification name type of the chain. Used in setting up the registry
|
|
50
59
|
*/
|
|
51
|
-
export
|
|
60
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
61
|
+
export type BittensorSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor';
|
|
52
62
|
export interface DotNetwork extends AccountNetwork {
|
|
53
63
|
readonly specName: PolkadotSpecNameType;
|
|
54
64
|
readonly genesisHash: string;
|
|
@@ -61,6 +71,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
71
|
readonly batcherContractAddress?: string;
|
|
62
72
|
readonly forwarderFactoryAddress?: string;
|
|
63
73
|
readonly forwarderImplementationAddress?: string;
|
|
74
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
75
|
+
readonly tokenOperationHashPrefix?: string;
|
|
64
76
|
}
|
|
65
77
|
export interface TronNetwork extends AccountNetwork {
|
|
66
78
|
maxFeeLimit: string;
|
|
@@ -110,6 +122,58 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
122
|
poolDeposit: number;
|
|
111
123
|
stakeKeyDeposit: number;
|
|
112
124
|
}
|
|
125
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
126
|
+
name: string;
|
|
127
|
+
family: CoinFamily;
|
|
128
|
+
explorerUrl: string;
|
|
129
|
+
accountExplorerUrl: string;
|
|
130
|
+
blockExplorerUrl: string;
|
|
131
|
+
}
|
|
132
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
133
|
+
name: string;
|
|
134
|
+
family: CoinFamily;
|
|
135
|
+
explorerUrl: string;
|
|
136
|
+
accountExplorerUrl: string;
|
|
137
|
+
blockExplorerUrl: string;
|
|
138
|
+
}
|
|
139
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
140
|
+
name: string;
|
|
141
|
+
family: CoinFamily;
|
|
142
|
+
explorerUrl: string;
|
|
143
|
+
accountExplorerUrl: string;
|
|
144
|
+
}
|
|
145
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
146
|
+
name: string;
|
|
147
|
+
family: CoinFamily;
|
|
148
|
+
explorerUrl: string;
|
|
149
|
+
accountExplorerUrl: string;
|
|
150
|
+
}
|
|
151
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
152
|
+
name: string;
|
|
153
|
+
family: CoinFamily;
|
|
154
|
+
explorerUrl: string;
|
|
155
|
+
accountExplorerUrl: string;
|
|
156
|
+
chainId: number;
|
|
157
|
+
nativeCoinOperationHashPrefix: string;
|
|
158
|
+
tokenOperationHashPrefix: string;
|
|
159
|
+
forwarderFactoryAddress: string;
|
|
160
|
+
forwarderImplementationAddress: string;
|
|
161
|
+
walletFactoryAddress: string;
|
|
162
|
+
walletImplementationAddress: string;
|
|
163
|
+
}
|
|
164
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
165
|
+
name: string;
|
|
166
|
+
family: CoinFamily;
|
|
167
|
+
explorerUrl: string;
|
|
168
|
+
accountExplorerUrl: string;
|
|
169
|
+
chainId: number;
|
|
170
|
+
nativeCoinOperationHashPrefix: string;
|
|
171
|
+
tokenOperationHashPrefix: string;
|
|
172
|
+
forwarderFactoryAddress: string;
|
|
173
|
+
forwarderImplementationAddress: string;
|
|
174
|
+
walletFactoryAddress: string;
|
|
175
|
+
walletImplementationAddress: string;
|
|
176
|
+
}
|
|
113
177
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
178
|
name: string;
|
|
115
179
|
family: CoinFamily;
|
|
@@ -137,6 +201,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
201
|
alias: string;
|
|
138
202
|
vm: string;
|
|
139
203
|
txFee: string;
|
|
204
|
+
maxImportFee: string;
|
|
140
205
|
createSubnetTx: string;
|
|
141
206
|
createChainTx: string;
|
|
142
207
|
creationTxFee: string;
|
|
@@ -162,6 +227,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
227
|
hrp: string;
|
|
163
228
|
vm: string;
|
|
164
229
|
txFee: string;
|
|
230
|
+
maxImportFee: string;
|
|
165
231
|
createSubnetTx: string;
|
|
166
232
|
createChainTx: string;
|
|
167
233
|
creationTxFee: string;
|
|
@@ -180,6 +246,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
246
|
explorerUrl: string;
|
|
181
247
|
accountExplorerUrl: string;
|
|
182
248
|
chainId: number;
|
|
249
|
+
nativeCoinOperationHashPrefix: string;
|
|
250
|
+
tokenOperationHashPrefix: string;
|
|
251
|
+
batcherContractAddress: string;
|
|
183
252
|
}
|
|
184
253
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
254
|
name: string;
|
|
@@ -187,6 +256,23 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
256
|
explorerUrl: string;
|
|
188
257
|
accountExplorerUrl: string;
|
|
189
258
|
chainId: number;
|
|
259
|
+
nativeCoinOperationHashPrefix: string;
|
|
260
|
+
tokenOperationHashPrefix: string;
|
|
261
|
+
batcherContractAddress: string;
|
|
262
|
+
}
|
|
263
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
264
|
+
name: string;
|
|
265
|
+
family: CoinFamily;
|
|
266
|
+
utxolibName: string;
|
|
267
|
+
explorerUrl: string;
|
|
268
|
+
lightningServicePubKey: string;
|
|
269
|
+
}
|
|
270
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
271
|
+
name: string;
|
|
272
|
+
family: CoinFamily;
|
|
273
|
+
utxolibName: string;
|
|
274
|
+
explorerUrl: string;
|
|
275
|
+
lightningServicePubKey: string;
|
|
190
276
|
}
|
|
191
277
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
278
|
name: string;
|
|
@@ -200,6 +286,24 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
200
286
|
utxolibName: string;
|
|
201
287
|
explorerUrl: string;
|
|
202
288
|
}
|
|
289
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
290
|
+
name: string;
|
|
291
|
+
family: CoinFamily;
|
|
292
|
+
utxolibName: string;
|
|
293
|
+
explorerUrl: string;
|
|
294
|
+
}
|
|
295
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
296
|
+
name: string;
|
|
297
|
+
family: CoinFamily;
|
|
298
|
+
utxolibName: string;
|
|
299
|
+
explorerUrl: string;
|
|
300
|
+
}
|
|
301
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
302
|
+
name: string;
|
|
303
|
+
family: CoinFamily;
|
|
304
|
+
utxolibName: string;
|
|
305
|
+
explorerUrl: string;
|
|
306
|
+
}
|
|
203
307
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
308
|
name: string;
|
|
205
309
|
family: CoinFamily;
|
|
@@ -298,6 +402,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
298
402
|
explorerUrl: string;
|
|
299
403
|
accountExplorerUrl: string;
|
|
300
404
|
chainId: number;
|
|
405
|
+
nativeCoinOperationHashPrefix: string;
|
|
406
|
+
tokenOperationHashPrefix: string;
|
|
301
407
|
}
|
|
302
408
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
303
409
|
name: string;
|
|
@@ -305,6 +411,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
305
411
|
explorerUrl: string;
|
|
306
412
|
accountExplorerUrl: string;
|
|
307
413
|
chainId: number;
|
|
414
|
+
nativeCoinOperationHashPrefix: string;
|
|
415
|
+
tokenOperationHashPrefix: string;
|
|
308
416
|
}
|
|
309
417
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
310
418
|
name: string;
|
|
@@ -328,6 +436,8 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
328
436
|
batcherContractAddress: string;
|
|
329
437
|
forwarderFactoryAddress: string;
|
|
330
438
|
forwarderImplementationAddress: string;
|
|
439
|
+
nativeCoinOperationHashPrefix: string;
|
|
440
|
+
tokenOperationHashPrefix: string;
|
|
331
441
|
}
|
|
332
442
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
333
443
|
name: string;
|
|
@@ -344,6 +454,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
344
454
|
batcherContractAddress: string;
|
|
345
455
|
forwarderFactoryAddress: string;
|
|
346
456
|
forwarderImplementationAddress: string;
|
|
457
|
+
nativeCoinOperationHashPrefix: string;
|
|
458
|
+
tokenOperationHashPrefix: string;
|
|
347
459
|
}
|
|
348
460
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
349
461
|
name: string;
|
|
@@ -360,6 +472,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
360
472
|
batcherContractAddress: string;
|
|
361
473
|
forwarderFactoryAddress: string;
|
|
362
474
|
forwarderImplementationAddress: string;
|
|
475
|
+
nativeCoinOperationHashPrefix: string;
|
|
476
|
+
tokenOperationHashPrefix: string;
|
|
363
477
|
}
|
|
364
478
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
365
479
|
name: string;
|
|
@@ -371,6 +485,21 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
371
485
|
batcherContractAddress: string;
|
|
372
486
|
forwarderFactoryAddress: string;
|
|
373
487
|
forwarderImplementationAddress: string;
|
|
488
|
+
nativeCoinOperationHashPrefix: string;
|
|
489
|
+
tokenOperationHashPrefix: string;
|
|
490
|
+
}
|
|
491
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
492
|
+
name: string;
|
|
493
|
+
family: CoinFamily;
|
|
494
|
+
explorerUrl: string;
|
|
495
|
+
accountExplorerUrl: string;
|
|
496
|
+
blockExplorerUrl: string;
|
|
497
|
+
chainId: number;
|
|
498
|
+
batcherContractAddress: string;
|
|
499
|
+
forwarderFactoryAddress: string;
|
|
500
|
+
forwarderImplementationAddress: string;
|
|
501
|
+
nativeCoinOperationHashPrefix: string;
|
|
502
|
+
tokenOperationHashPrefix: string;
|
|
374
503
|
}
|
|
375
504
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
505
|
name: string;
|
|
@@ -378,6 +507,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
507
|
explorerUrl: string;
|
|
379
508
|
accountExplorerUrl: string;
|
|
380
509
|
chainId: number;
|
|
510
|
+
nativeCoinOperationHashPrefix: string;
|
|
511
|
+
tokenOperationHashPrefix: string;
|
|
381
512
|
}
|
|
382
513
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
514
|
name: string;
|
|
@@ -385,6 +516,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
516
|
explorerUrl: string;
|
|
386
517
|
accountExplorerUrl: string;
|
|
387
518
|
chainId: number;
|
|
519
|
+
nativeCoinOperationHashPrefix: string;
|
|
520
|
+
tokenOperationHashPrefix: string;
|
|
388
521
|
}
|
|
389
522
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
523
|
name: string;
|
|
@@ -434,6 +567,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
567
|
explorerUrl: string;
|
|
435
568
|
accountExplorerUrl: string;
|
|
436
569
|
chainId: number;
|
|
570
|
+
nativeCoinOperationHashPrefix: string;
|
|
571
|
+
tokenOperationHashPrefix: string;
|
|
437
572
|
}
|
|
438
573
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
574
|
name: string;
|
|
@@ -441,6 +576,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
576
|
explorerUrl: string;
|
|
442
577
|
accountExplorerUrl: string;
|
|
443
578
|
chainId: number;
|
|
579
|
+
nativeCoinOperationHashPrefix: string;
|
|
580
|
+
tokenOperationHashPrefix: string;
|
|
444
581
|
}
|
|
445
582
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
583
|
name: string;
|
|
@@ -552,6 +689,76 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
552
689
|
family: CoinFamily;
|
|
553
690
|
explorerUrl: string;
|
|
554
691
|
}
|
|
692
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
693
|
+
name: string;
|
|
694
|
+
family: CoinFamily;
|
|
695
|
+
explorerUrl: string;
|
|
696
|
+
}
|
|
697
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
698
|
+
name: string;
|
|
699
|
+
family: CoinFamily;
|
|
700
|
+
explorerUrl: string;
|
|
701
|
+
}
|
|
702
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
703
|
+
name: string;
|
|
704
|
+
family: CoinFamily;
|
|
705
|
+
explorerUrl: string;
|
|
706
|
+
}
|
|
707
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
708
|
+
name: string;
|
|
709
|
+
family: CoinFamily;
|
|
710
|
+
explorerUrl: string;
|
|
711
|
+
}
|
|
712
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
713
|
+
name: string;
|
|
714
|
+
family: CoinFamily;
|
|
715
|
+
explorerUrl: string;
|
|
716
|
+
}
|
|
717
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
718
|
+
name: string;
|
|
719
|
+
family: CoinFamily;
|
|
720
|
+
explorerUrl: string;
|
|
721
|
+
}
|
|
722
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
723
|
+
name: string;
|
|
724
|
+
family: CoinFamily;
|
|
725
|
+
explorerUrl: string;
|
|
726
|
+
}
|
|
727
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
728
|
+
name: string;
|
|
729
|
+
family: CoinFamily;
|
|
730
|
+
explorerUrl: string;
|
|
731
|
+
}
|
|
732
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
733
|
+
name: string;
|
|
734
|
+
family: CoinFamily;
|
|
735
|
+
explorerUrl: string;
|
|
736
|
+
}
|
|
737
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
738
|
+
name: string;
|
|
739
|
+
family: CoinFamily;
|
|
740
|
+
explorerUrl: string;
|
|
741
|
+
}
|
|
742
|
+
declare class Mantra extends Mainnet implements AccountNetwork {
|
|
743
|
+
name: string;
|
|
744
|
+
family: CoinFamily;
|
|
745
|
+
explorerUrl: string;
|
|
746
|
+
}
|
|
747
|
+
declare class MantraTestnet extends Testnet implements AccountNetwork {
|
|
748
|
+
name: string;
|
|
749
|
+
family: CoinFamily;
|
|
750
|
+
explorerUrl: string;
|
|
751
|
+
}
|
|
752
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
753
|
+
name: string;
|
|
754
|
+
family: CoinFamily;
|
|
755
|
+
explorerUrl: string;
|
|
756
|
+
}
|
|
757
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
758
|
+
name: string;
|
|
759
|
+
family: CoinFamily;
|
|
760
|
+
explorerUrl: string;
|
|
761
|
+
}
|
|
555
762
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
556
763
|
name: string;
|
|
557
764
|
family: CoinFamily;
|
|
@@ -586,9 +793,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
586
793
|
family: CoinFamily;
|
|
587
794
|
explorerUrl: undefined;
|
|
588
795
|
}
|
|
796
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
797
|
+
name: string;
|
|
798
|
+
family: CoinFamily;
|
|
799
|
+
explorerUrl: string;
|
|
800
|
+
}
|
|
801
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
802
|
+
name: string;
|
|
803
|
+
family: CoinFamily;
|
|
804
|
+
explorerUrl: string;
|
|
805
|
+
specName: BittensorSpecNameType;
|
|
806
|
+
genesisHash: string;
|
|
807
|
+
specVersion: number;
|
|
808
|
+
chainName: string;
|
|
809
|
+
txVersion: number;
|
|
810
|
+
}
|
|
589
811
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
590
812
|
name: string;
|
|
591
813
|
family: CoinFamily;
|
|
814
|
+
accountExplorerUrl: string;
|
|
592
815
|
explorerUrl: string;
|
|
593
816
|
maxFeeLimit: string;
|
|
594
817
|
contractCallFeeLimit: string;
|
|
@@ -596,6 +819,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
596
819
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
597
820
|
name: string;
|
|
598
821
|
family: CoinFamily;
|
|
822
|
+
accountExplorerUrl: string;
|
|
599
823
|
explorerUrl: string;
|
|
600
824
|
maxFeeLimit: string;
|
|
601
825
|
contractCallFeeLimit: string;
|
|
@@ -614,11 +838,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
614
838
|
name: string;
|
|
615
839
|
family: CoinFamily;
|
|
616
840
|
explorerUrl: string;
|
|
841
|
+
accountExplorerUrl: string;
|
|
617
842
|
}
|
|
618
843
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
619
844
|
name: string;
|
|
620
845
|
family: CoinFamily;
|
|
621
846
|
explorerUrl: string;
|
|
847
|
+
accountExplorerUrl: string;
|
|
622
848
|
}
|
|
623
849
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
624
850
|
name: string;
|
|
@@ -657,6 +883,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
657
883
|
walletFactoryAddress: string;
|
|
658
884
|
walletImplementationAddress: string;
|
|
659
885
|
batcherContractAddress: string;
|
|
886
|
+
nativeCoinOperationHashPrefix: string;
|
|
887
|
+
tokenOperationHashPrefix: string;
|
|
660
888
|
}
|
|
661
889
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
662
890
|
name: string;
|
|
@@ -669,22 +897,345 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
669
897
|
walletFactoryAddress: string;
|
|
670
898
|
walletImplementationAddress: string;
|
|
671
899
|
batcherContractAddress: string;
|
|
900
|
+
nativeCoinOperationHashPrefix: string;
|
|
901
|
+
tokenOperationHashPrefix: string;
|
|
902
|
+
}
|
|
903
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
904
|
+
name: string;
|
|
905
|
+
family: CoinFamily;
|
|
906
|
+
explorerUrl: string;
|
|
907
|
+
accountExplorerUrl: string;
|
|
908
|
+
chainId: number;
|
|
909
|
+
nativeCoinOperationHashPrefix: string;
|
|
910
|
+
tokenOperationHashPrefix: string;
|
|
911
|
+
forwarderFactoryAddress: string;
|
|
912
|
+
forwarderImplementationAddress: string;
|
|
913
|
+
walletFactoryAddress: string;
|
|
914
|
+
walletImplementationAddress: string;
|
|
915
|
+
batcherContractAddress: string;
|
|
916
|
+
}
|
|
917
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
918
|
+
name: string;
|
|
919
|
+
family: CoinFamily;
|
|
920
|
+
explorerUrl: string;
|
|
921
|
+
accountExplorerUrl: string;
|
|
922
|
+
chainId: number;
|
|
923
|
+
nativeCoinOperationHashPrefix: string;
|
|
924
|
+
tokenOperationHashPrefix: string;
|
|
925
|
+
forwarderFactoryAddress: string;
|
|
926
|
+
forwarderImplementationAddress: string;
|
|
927
|
+
walletFactoryAddress: string;
|
|
928
|
+
walletImplementationAddress: string;
|
|
929
|
+
batcherContractAddress: string;
|
|
930
|
+
}
|
|
931
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
932
|
+
name: string;
|
|
933
|
+
family: CoinFamily;
|
|
934
|
+
explorerUrl: string;
|
|
935
|
+
accountExplorerUrl: string;
|
|
936
|
+
chainId: number;
|
|
937
|
+
nativeCoinOperationHashPrefix: string;
|
|
938
|
+
tokenOperationHashPrefix: string;
|
|
939
|
+
}
|
|
940
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
941
|
+
name: string;
|
|
942
|
+
family: CoinFamily;
|
|
943
|
+
explorerUrl: string;
|
|
944
|
+
accountExplorerUrl: string;
|
|
945
|
+
chainId: number;
|
|
946
|
+
nativeCoinOperationHashPrefix: string;
|
|
947
|
+
tokenOperationHashPrefix: string;
|
|
948
|
+
forwarderFactoryAddress: string;
|
|
949
|
+
forwarderImplementationAddress: string;
|
|
950
|
+
walletFactoryAddress: string;
|
|
951
|
+
walletImplementationAddress: string;
|
|
952
|
+
}
|
|
953
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
954
|
+
name: string;
|
|
955
|
+
family: CoinFamily;
|
|
956
|
+
explorerUrl: string;
|
|
957
|
+
accountExplorerUrl: string;
|
|
958
|
+
chainId: number;
|
|
959
|
+
nativeCoinOperationHashPrefix: string;
|
|
960
|
+
tokenOperationHashPrefix: string;
|
|
961
|
+
batcherContractAddress: string;
|
|
962
|
+
forwarderFactoryAddress: string;
|
|
963
|
+
forwarderImplementationAddress: string;
|
|
964
|
+
}
|
|
965
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
966
|
+
name: string;
|
|
967
|
+
family: CoinFamily;
|
|
968
|
+
explorerUrl: string;
|
|
969
|
+
accountExplorerUrl: string;
|
|
970
|
+
chainId: number;
|
|
971
|
+
nativeCoinOperationHashPrefix: string;
|
|
972
|
+
tokenOperationHashPrefix: string;
|
|
973
|
+
batcherContractAddress: string;
|
|
974
|
+
forwarderFactoryAddress: string;
|
|
975
|
+
forwarderImplementationAddress: string;
|
|
976
|
+
}
|
|
977
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
978
|
+
name: string;
|
|
979
|
+
family: CoinFamily;
|
|
980
|
+
explorerUrl: string;
|
|
981
|
+
accountExplorerUrl: string;
|
|
982
|
+
chainId: number;
|
|
983
|
+
nativeCoinOperationHashPrefix: string;
|
|
984
|
+
batcherContractAddress: string;
|
|
985
|
+
forwarderFactoryAddress: string;
|
|
986
|
+
forwarderImplementationAddress: string;
|
|
987
|
+
}
|
|
988
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
989
|
+
name: string;
|
|
990
|
+
family: CoinFamily;
|
|
991
|
+
explorerUrl: string;
|
|
992
|
+
accountExplorerUrl: string;
|
|
993
|
+
chainId: number;
|
|
994
|
+
nativeCoinOperationHashPrefix: string;
|
|
995
|
+
batcherContractAddress: string;
|
|
996
|
+
forwarderFactoryAddress: string;
|
|
997
|
+
forwarderImplementationAddress: string;
|
|
998
|
+
}
|
|
999
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1000
|
+
name: string;
|
|
1001
|
+
family: CoinFamily;
|
|
1002
|
+
explorerUrl: string;
|
|
1003
|
+
accountExplorerUrl: string;
|
|
1004
|
+
chainId: number;
|
|
1005
|
+
nativeCoinOperationHashPrefix: string;
|
|
1006
|
+
batcherContractAddress: string;
|
|
1007
|
+
forwarderFactoryAddress: string;
|
|
1008
|
+
forwarderImplementationAddress: string;
|
|
1009
|
+
}
|
|
1010
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1011
|
+
name: string;
|
|
1012
|
+
family: CoinFamily;
|
|
1013
|
+
explorerUrl: string;
|
|
1014
|
+
accountExplorerUrl: string;
|
|
1015
|
+
chainId: number;
|
|
1016
|
+
nativeCoinOperationHashPrefix: string;
|
|
1017
|
+
batcherContractAddress: string;
|
|
1018
|
+
forwarderFactoryAddress: string;
|
|
1019
|
+
forwarderImplementationAddress: string;
|
|
1020
|
+
}
|
|
1021
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1022
|
+
name: string;
|
|
1023
|
+
family: CoinFamily;
|
|
1024
|
+
explorerUrl: string;
|
|
1025
|
+
accountExplorerUrl: string;
|
|
1026
|
+
chainId: number;
|
|
1027
|
+
nativeCoinOperationHashPrefix: string;
|
|
1028
|
+
batcherContractAddress: string;
|
|
1029
|
+
forwarderFactoryAddress: string;
|
|
1030
|
+
forwarderImplementationAddress: string;
|
|
1031
|
+
}
|
|
1032
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1033
|
+
name: string;
|
|
1034
|
+
family: CoinFamily;
|
|
1035
|
+
explorerUrl: string;
|
|
1036
|
+
accountExplorerUrl: string;
|
|
1037
|
+
chainId: number;
|
|
1038
|
+
nativeCoinOperationHashPrefix: string;
|
|
1039
|
+
batcherContractAddress: string;
|
|
1040
|
+
forwarderFactoryAddress: string;
|
|
1041
|
+
forwarderImplementationAddress: string;
|
|
1042
|
+
}
|
|
1043
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1044
|
+
name: string;
|
|
1045
|
+
family: CoinFamily;
|
|
1046
|
+
explorerUrl: string;
|
|
1047
|
+
accountExplorerUrl: string;
|
|
1048
|
+
chainId: number;
|
|
1049
|
+
nativeCoinOperationHashPrefix: string;
|
|
1050
|
+
batcherContractAddress: string;
|
|
1051
|
+
forwarderFactoryAddress: string;
|
|
1052
|
+
forwarderImplementationAddress: string;
|
|
1053
|
+
}
|
|
1054
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1055
|
+
name: string;
|
|
1056
|
+
family: CoinFamily;
|
|
1057
|
+
explorerUrl: string;
|
|
1058
|
+
accountExplorerUrl: string;
|
|
1059
|
+
chainId: number;
|
|
1060
|
+
nativeCoinOperationHashPrefix: string;
|
|
1061
|
+
batcherContractAddress: string;
|
|
1062
|
+
forwarderFactoryAddress: string;
|
|
1063
|
+
forwarderImplementationAddress: string;
|
|
1064
|
+
}
|
|
1065
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1066
|
+
name: string;
|
|
1067
|
+
family: CoinFamily;
|
|
1068
|
+
explorerUrl: string;
|
|
1069
|
+
accountExplorerUrl: string;
|
|
1070
|
+
chainId: number;
|
|
1071
|
+
nativeCoinOperationHashPrefix: string;
|
|
1072
|
+
}
|
|
1073
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1074
|
+
name: string;
|
|
1075
|
+
family: CoinFamily;
|
|
1076
|
+
explorerUrl: string;
|
|
1077
|
+
chainId: number;
|
|
1078
|
+
nativeCoinOperationHashPrefix: string;
|
|
1079
|
+
}
|
|
1080
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1081
|
+
name: string;
|
|
1082
|
+
family: CoinFamily;
|
|
1083
|
+
explorerUrl: string;
|
|
1084
|
+
accountExplorerUrl: string;
|
|
1085
|
+
chainId: number;
|
|
1086
|
+
nativeCoinOperationHashPrefix: string;
|
|
1087
|
+
}
|
|
1088
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1089
|
+
name: string;
|
|
1090
|
+
family: CoinFamily;
|
|
1091
|
+
explorerUrl: string;
|
|
1092
|
+
accountExplorerUrl: string;
|
|
1093
|
+
chainId: number;
|
|
1094
|
+
nativeCoinOperationHashPrefix: string;
|
|
1095
|
+
}
|
|
1096
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1097
|
+
name: string;
|
|
1098
|
+
family: CoinFamily;
|
|
1099
|
+
explorerUrl: string;
|
|
1100
|
+
accountExplorerUrl: string;
|
|
1101
|
+
chainId: number;
|
|
1102
|
+
nativeCoinOperationHashPrefix: string;
|
|
1103
|
+
}
|
|
1104
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1105
|
+
name: string;
|
|
1106
|
+
family: CoinFamily;
|
|
1107
|
+
explorerUrl: string;
|
|
1108
|
+
accountExplorerUrl: string;
|
|
1109
|
+
chainId: number;
|
|
1110
|
+
nativeCoinOperationHashPrefix: string;
|
|
1111
|
+
}
|
|
1112
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1113
|
+
name: string;
|
|
1114
|
+
family: CoinFamily;
|
|
1115
|
+
explorerUrl: string;
|
|
1116
|
+
chainId: number;
|
|
1117
|
+
nativeCoinOperationHashPrefix: string;
|
|
1118
|
+
}
|
|
1119
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1120
|
+
name: string;
|
|
1121
|
+
family: CoinFamily;
|
|
1122
|
+
explorerUrl: string;
|
|
1123
|
+
accountExplorerUrl: string;
|
|
1124
|
+
chainId: number;
|
|
1125
|
+
nativeCoinOperationHashPrefix: string;
|
|
1126
|
+
}
|
|
1127
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1128
|
+
name: string;
|
|
1129
|
+
family: CoinFamily;
|
|
1130
|
+
explorerUrl: string;
|
|
1131
|
+
accountExplorerUrl: string;
|
|
1132
|
+
chainId: number;
|
|
1133
|
+
nativeCoinOperationHashPrefix: string;
|
|
1134
|
+
batcherContractAddress: string;
|
|
1135
|
+
forwarderFactoryAddress: string;
|
|
1136
|
+
forwarderImplementationAddress: string;
|
|
1137
|
+
}
|
|
1138
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1139
|
+
name: string;
|
|
1140
|
+
family: CoinFamily;
|
|
1141
|
+
explorerUrl: string;
|
|
1142
|
+
accountExplorerUrl: string;
|
|
1143
|
+
chainId: number;
|
|
1144
|
+
nativeCoinOperationHashPrefix: string;
|
|
1145
|
+
batcherContractAddress: string;
|
|
1146
|
+
forwarderFactoryAddress: string;
|
|
1147
|
+
forwarderImplementationAddress: string;
|
|
1148
|
+
}
|
|
1149
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1150
|
+
name: string;
|
|
1151
|
+
family: CoinFamily;
|
|
1152
|
+
explorerUrl: string;
|
|
1153
|
+
accountExplorerUrl: string;
|
|
1154
|
+
chainId: number;
|
|
1155
|
+
nativeCoinOperationHashPrefix: string;
|
|
1156
|
+
batcherContractAddress: string;
|
|
1157
|
+
forwarderFactoryAddress: string;
|
|
1158
|
+
forwarderImplementationAddress: string;
|
|
1159
|
+
}
|
|
1160
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1161
|
+
name: string;
|
|
1162
|
+
family: CoinFamily;
|
|
1163
|
+
explorerUrl: string;
|
|
1164
|
+
accountExplorerUrl: string;
|
|
1165
|
+
chainId: number;
|
|
1166
|
+
nativeCoinOperationHashPrefix: string;
|
|
1167
|
+
batcherContractAddress: string;
|
|
1168
|
+
forwarderFactoryAddress: string;
|
|
1169
|
+
forwarderImplementationAddress: string;
|
|
1170
|
+
}
|
|
1171
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1172
|
+
name: string;
|
|
1173
|
+
family: CoinFamily;
|
|
1174
|
+
explorerUrl: string;
|
|
1175
|
+
accountExplorerUrl: string;
|
|
1176
|
+
chainId: number;
|
|
1177
|
+
nativeCoinOperationHashPrefix: string;
|
|
1178
|
+
tokenOperationHashPrefix: string;
|
|
1179
|
+
forwarderFactoryAddress: string;
|
|
1180
|
+
forwarderImplementationAddress: string;
|
|
1181
|
+
walletFactoryAddress: string;
|
|
1182
|
+
walletImplementationAddress: string;
|
|
1183
|
+
}
|
|
1184
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1185
|
+
name: string;
|
|
1186
|
+
family: CoinFamily;
|
|
1187
|
+
explorerUrl: string;
|
|
1188
|
+
accountExplorerUrl: string;
|
|
1189
|
+
chainId: number;
|
|
1190
|
+
nativeCoinOperationHashPrefix: string;
|
|
1191
|
+
tokenOperationHashPrefix: string;
|
|
1192
|
+
forwarderFactoryAddress: string;
|
|
1193
|
+
forwarderImplementationAddress: string;
|
|
1194
|
+
walletFactoryAddress: string;
|
|
1195
|
+
walletImplementationAddress: string;
|
|
1196
|
+
}
|
|
1197
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1198
|
+
name: string;
|
|
1199
|
+
family: CoinFamily;
|
|
1200
|
+
explorerUrl: string;
|
|
1201
|
+
}
|
|
1202
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1203
|
+
name: string;
|
|
1204
|
+
family: CoinFamily;
|
|
1205
|
+
explorerUrl: string;
|
|
1206
|
+
}
|
|
1207
|
+
declare class Vet extends Mainnet implements AccountNetwork {
|
|
1208
|
+
name: string;
|
|
1209
|
+
family: CoinFamily;
|
|
1210
|
+
explorerUrl: string;
|
|
1211
|
+
}
|
|
1212
|
+
declare class VetTestnet extends Testnet implements AccountNetwork {
|
|
1213
|
+
name: string;
|
|
1214
|
+
family: CoinFamily;
|
|
1215
|
+
explorerUrl: string;
|
|
672
1216
|
}
|
|
673
1217
|
export declare const Networks: {
|
|
674
1218
|
main: {
|
|
675
1219
|
ada: Readonly<Ada>;
|
|
676
1220
|
algorand: Readonly<Algorand>;
|
|
1221
|
+
apt: Readonly<Apt>;
|
|
1222
|
+
arbitrum: Readonly<Arbitrum>;
|
|
677
1223
|
atom: Readonly<Atom>;
|
|
678
1224
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1225
|
avalancheP: Readonly<AvalancheP>;
|
|
1226
|
+
baby: Readonly<Baby>;
|
|
1227
|
+
basechain: Readonly<BaseChain>;
|
|
680
1228
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1229
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1230
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1231
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1232
|
+
bera: Readonly<Berachain>;
|
|
684
1233
|
bld: Readonly<Bld>;
|
|
685
1234
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1235
|
casper: Readonly<Casper>;
|
|
687
1236
|
celo: Readonly<Celo>;
|
|
1237
|
+
coredao: Readonly<Coredao>;
|
|
1238
|
+
coreum: Readonly<Coreum>;
|
|
688
1239
|
dash: Readonly<Dash>;
|
|
689
1240
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1241
|
dot: Readonly<Polkadot>;
|
|
@@ -695,41 +1246,71 @@ export declare const Networks: {
|
|
|
695
1246
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1247
|
ethereumW: Readonly<EthereumW>;
|
|
697
1248
|
fiat: Readonly<Fiat>;
|
|
1249
|
+
flr: Readonly<Flare>;
|
|
698
1250
|
hash: Readonly<Hash>;
|
|
699
1251
|
hedera: Readonly<Hedera>;
|
|
1252
|
+
icp: Readonly<Icp>;
|
|
700
1253
|
injective: Readonly<Injective>;
|
|
1254
|
+
islm: Readonly<Islm>;
|
|
1255
|
+
kava: Readonly<Kava>;
|
|
1256
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1257
|
litecoin: Readonly<Litecoin>;
|
|
1258
|
+
mon: Readonly<Monad>;
|
|
1259
|
+
mantra: Readonly<Mantra>;
|
|
702
1260
|
polygon: Readonly<Polygon>;
|
|
1261
|
+
polyx: Readonly<Polymesh>;
|
|
1262
|
+
oas: Readonly<Oas>;
|
|
703
1263
|
ofc: Readonly<Ofc>;
|
|
1264
|
+
optimism: Readonly<Optimism>;
|
|
704
1265
|
osmo: Readonly<Osmo>;
|
|
705
1266
|
rbtc: Readonly<Rbtc>;
|
|
1267
|
+
rune: Readonly<Rune>;
|
|
706
1268
|
stellar: Readonly<Stellar>;
|
|
707
1269
|
sei: Readonly<Sei>;
|
|
1270
|
+
sgb: Readonly<Songbird>;
|
|
708
1271
|
sol: Readonly<Sol>;
|
|
709
1272
|
sui: Readonly<Sui>;
|
|
710
1273
|
near: Readonly<Near>;
|
|
711
1274
|
stx: Readonly<Stx>;
|
|
1275
|
+
stt: Readonly<Somnia>;
|
|
1276
|
+
soneium: Readonly<Soneium>;
|
|
712
1277
|
susd: Readonly<SUSD>;
|
|
1278
|
+
tao: Readonly<Bittensor>;
|
|
713
1279
|
tia: Readonly<Tia>;
|
|
1280
|
+
ton: Readonly<Ton>;
|
|
714
1281
|
trx: Readonly<Trx>;
|
|
1282
|
+
vet: Readonly<Vet>;
|
|
1283
|
+
wemix: Readonly<Wemix>;
|
|
1284
|
+
world: Readonly<World>;
|
|
1285
|
+
xdc: Readonly<Xdc>;
|
|
715
1286
|
xrp: Readonly<Xrp>;
|
|
716
1287
|
xtz: Readonly<Xtz>;
|
|
717
1288
|
zCash: Readonly<ZCash>;
|
|
718
1289
|
zeta: Readonly<Zeta>;
|
|
1290
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1291
|
};
|
|
720
1292
|
test: {
|
|
721
1293
|
ada: Readonly<AdaTestnet>;
|
|
722
1294
|
algorand: Readonly<AlgorandTestnet>;
|
|
1295
|
+
apt: Readonly<AptTestnet>;
|
|
1296
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
723
1297
|
atom: Readonly<AtomTestnet>;
|
|
724
1298
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1299
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1300
|
+
baby: Readonly<BabyTestnet>;
|
|
1301
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1302
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1303
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1304
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1305
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1306
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1307
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1308
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1309
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1310
|
bld: Readonly<BldTestnet>;
|
|
731
1311
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1312
|
casper: Readonly<CasperTestnet>;
|
|
1313
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1314
|
celo: Readonly<CeloTestnet>;
|
|
734
1315
|
dash: Readonly<DashTestnet>;
|
|
735
1316
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
@@ -737,31 +1318,54 @@ export declare const Networks: {
|
|
|
737
1318
|
eCash: Readonly<ECashTestnet>;
|
|
738
1319
|
eos: Readonly<EosTestnet>;
|
|
739
1320
|
fiat: Readonly<FiatTestnet>;
|
|
1321
|
+
flr: Readonly<FlareTestnet>;
|
|
1322
|
+
mon: Readonly<MonadTestnet>;
|
|
740
1323
|
pyrmont: Readonly<Pyrmont>;
|
|
741
1324
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1325
|
hash: Readonly<HashTestnet>;
|
|
743
1326
|
hedera: Readonly<HederaTestnet>;
|
|
1327
|
+
icp: Readonly<IcpTestnet>;
|
|
744
1328
|
injective: Readonly<InjectiveTestnet>;
|
|
1329
|
+
islm: Readonly<IslmTestnet>;
|
|
1330
|
+
kava: Readonly<KavaTestnet>;
|
|
745
1331
|
kovan: Readonly<Kovan>;
|
|
746
1332
|
goerli: Readonly<Goerli>;
|
|
1333
|
+
holesky: Readonly<Holesky>;
|
|
1334
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1335
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1336
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1337
|
polygon: Readonly<PolygonTestnet>;
|
|
1338
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1339
|
+
oas: Readonly<OasTestnet>;
|
|
749
1340
|
ofc: Readonly<OfcTestnet>;
|
|
1341
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1342
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1343
|
rbtc: Readonly<RbtcTestnet>;
|
|
1344
|
+
rune: Readonly<RuneTestNet>;
|
|
1345
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1346
|
stellar: Readonly<StellarTestnet>;
|
|
753
1347
|
sei: Readonly<SeiTestnet>;
|
|
754
1348
|
sol: Readonly<SolTestnet>;
|
|
755
1349
|
sui: Readonly<SuiTestnet>;
|
|
756
1350
|
near: Readonly<NearTestnet>;
|
|
757
1351
|
stx: Readonly<StxTestnet>;
|
|
1352
|
+
stt: Readonly<SomniaTestnet>;
|
|
1353
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
758
1354
|
susd: Readonly<SUSDTestnet>;
|
|
1355
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1356
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1357
|
tia: Readonly<TiaTestnet>;
|
|
1358
|
+
ton: Readonly<TonTestnet>;
|
|
760
1359
|
trx: Readonly<TrxTestnet>;
|
|
1360
|
+
vet: Readonly<VetTestnet>;
|
|
1361
|
+
wemix: Readonly<WemixTestnet>;
|
|
1362
|
+
world: Readonly<WorldTestnet>;
|
|
1363
|
+
xdc: Readonly<XdcTestnet>;
|
|
761
1364
|
xrp: Readonly<XrpTestnet>;
|
|
762
1365
|
xtz: Readonly<XtzTestnet>;
|
|
763
1366
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1367
|
zeta: Readonly<ZetaTestnet>;
|
|
1368
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1369
|
};
|
|
766
1370
|
};
|
|
767
1371
|
export {};
|