@bitgo-beta/statics 15.1.1-beta.93 → 15.1.1-beta.931
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 +2837 -0
- package/dist/src/account.d.ts +502 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +834 -127
- 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 +7 -3
- package/dist/src/base.d.ts +1423 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1477 -50
- package/dist/src/coinFeatures.d.ts +85 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +535 -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 +97 -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 +147 -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 +1406 -0
- package/dist/src/coins/nep141Tokens.d.ts +2 -0
- package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
- package/dist/src/coins/nep141Tokens.js +13 -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 +538 -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 +1315 -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 +142 -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 +338 -0
- package/dist/src/coins.d.ts +10 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +645 -1506
- 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/index.d.ts +3 -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 +29 -0
- package/dist/src/networks.d.ts +684 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +924 -44
- package/dist/src/ofc.d.ts +349 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +724 -14
- package/dist/src/tokenConfig.d.ts +152 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +614 -238
- 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 -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 SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet';
|
|
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,60 @@ 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
|
+
batcherContractAddress: string;
|
|
164
|
+
}
|
|
165
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
166
|
+
name: string;
|
|
167
|
+
family: CoinFamily;
|
|
168
|
+
explorerUrl: string;
|
|
169
|
+
accountExplorerUrl: string;
|
|
170
|
+
chainId: number;
|
|
171
|
+
nativeCoinOperationHashPrefix: string;
|
|
172
|
+
tokenOperationHashPrefix: string;
|
|
173
|
+
forwarderFactoryAddress: string;
|
|
174
|
+
forwarderImplementationAddress: string;
|
|
175
|
+
walletFactoryAddress: string;
|
|
176
|
+
walletImplementationAddress: string;
|
|
177
|
+
batcherContractAddress: string;
|
|
178
|
+
}
|
|
113
179
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
180
|
name: string;
|
|
115
181
|
family: CoinFamily;
|
|
@@ -137,6 +203,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
203
|
alias: string;
|
|
138
204
|
vm: string;
|
|
139
205
|
txFee: string;
|
|
206
|
+
maxImportFee: string;
|
|
140
207
|
createSubnetTx: string;
|
|
141
208
|
createChainTx: string;
|
|
142
209
|
creationTxFee: string;
|
|
@@ -162,6 +229,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
229
|
hrp: string;
|
|
163
230
|
vm: string;
|
|
164
231
|
txFee: string;
|
|
232
|
+
maxImportFee: string;
|
|
165
233
|
createSubnetTx: string;
|
|
166
234
|
createChainTx: string;
|
|
167
235
|
creationTxFee: string;
|
|
@@ -180,6 +248,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
248
|
explorerUrl: string;
|
|
181
249
|
accountExplorerUrl: string;
|
|
182
250
|
chainId: number;
|
|
251
|
+
nativeCoinOperationHashPrefix: string;
|
|
252
|
+
tokenOperationHashPrefix: string;
|
|
253
|
+
batcherContractAddress: string;
|
|
183
254
|
}
|
|
184
255
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
256
|
name: string;
|
|
@@ -187,6 +258,23 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
258
|
explorerUrl: string;
|
|
188
259
|
accountExplorerUrl: string;
|
|
189
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;
|
|
190
278
|
}
|
|
191
279
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
280
|
name: string;
|
|
@@ -200,6 +288,24 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
200
288
|
utxolibName: string;
|
|
201
289
|
explorerUrl: string;
|
|
202
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
|
+
}
|
|
203
309
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
310
|
name: string;
|
|
205
311
|
family: CoinFamily;
|
|
@@ -298,6 +404,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
298
404
|
explorerUrl: string;
|
|
299
405
|
accountExplorerUrl: string;
|
|
300
406
|
chainId: number;
|
|
407
|
+
nativeCoinOperationHashPrefix: string;
|
|
408
|
+
tokenOperationHashPrefix: string;
|
|
301
409
|
}
|
|
302
410
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
303
411
|
name: string;
|
|
@@ -305,6 +413,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
305
413
|
explorerUrl: string;
|
|
306
414
|
accountExplorerUrl: string;
|
|
307
415
|
chainId: number;
|
|
416
|
+
nativeCoinOperationHashPrefix: string;
|
|
417
|
+
tokenOperationHashPrefix: string;
|
|
308
418
|
}
|
|
309
419
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
310
420
|
name: string;
|
|
@@ -328,6 +438,8 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
328
438
|
batcherContractAddress: string;
|
|
329
439
|
forwarderFactoryAddress: string;
|
|
330
440
|
forwarderImplementationAddress: string;
|
|
441
|
+
nativeCoinOperationHashPrefix: string;
|
|
442
|
+
tokenOperationHashPrefix: string;
|
|
331
443
|
}
|
|
332
444
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
333
445
|
name: string;
|
|
@@ -344,6 +456,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
344
456
|
batcherContractAddress: string;
|
|
345
457
|
forwarderFactoryAddress: string;
|
|
346
458
|
forwarderImplementationAddress: string;
|
|
459
|
+
nativeCoinOperationHashPrefix: string;
|
|
460
|
+
tokenOperationHashPrefix: string;
|
|
347
461
|
}
|
|
348
462
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
349
463
|
name: string;
|
|
@@ -360,6 +474,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
360
474
|
batcherContractAddress: string;
|
|
361
475
|
forwarderFactoryAddress: string;
|
|
362
476
|
forwarderImplementationAddress: string;
|
|
477
|
+
nativeCoinOperationHashPrefix: string;
|
|
478
|
+
tokenOperationHashPrefix: string;
|
|
363
479
|
}
|
|
364
480
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
365
481
|
name: string;
|
|
@@ -371,6 +487,21 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
371
487
|
batcherContractAddress: string;
|
|
372
488
|
forwarderFactoryAddress: string;
|
|
373
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;
|
|
499
|
+
chainId: number;
|
|
500
|
+
batcherContractAddress: string;
|
|
501
|
+
forwarderFactoryAddress: string;
|
|
502
|
+
forwarderImplementationAddress: string;
|
|
503
|
+
nativeCoinOperationHashPrefix: string;
|
|
504
|
+
tokenOperationHashPrefix: string;
|
|
374
505
|
}
|
|
375
506
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
507
|
name: string;
|
|
@@ -378,6 +509,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
509
|
explorerUrl: string;
|
|
379
510
|
accountExplorerUrl: string;
|
|
380
511
|
chainId: number;
|
|
512
|
+
nativeCoinOperationHashPrefix: string;
|
|
513
|
+
tokenOperationHashPrefix: string;
|
|
381
514
|
}
|
|
382
515
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
516
|
name: string;
|
|
@@ -385,6 +518,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
518
|
explorerUrl: string;
|
|
386
519
|
accountExplorerUrl: string;
|
|
387
520
|
chainId: number;
|
|
521
|
+
nativeCoinOperationHashPrefix: string;
|
|
522
|
+
tokenOperationHashPrefix: string;
|
|
388
523
|
}
|
|
389
524
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
525
|
name: string;
|
|
@@ -434,6 +569,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
569
|
explorerUrl: string;
|
|
435
570
|
accountExplorerUrl: string;
|
|
436
571
|
chainId: number;
|
|
572
|
+
nativeCoinOperationHashPrefix: string;
|
|
573
|
+
tokenOperationHashPrefix: string;
|
|
437
574
|
}
|
|
438
575
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
576
|
name: string;
|
|
@@ -441,6 +578,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
578
|
explorerUrl: string;
|
|
442
579
|
accountExplorerUrl: string;
|
|
443
580
|
chainId: number;
|
|
581
|
+
nativeCoinOperationHashPrefix: string;
|
|
582
|
+
tokenOperationHashPrefix: string;
|
|
444
583
|
}
|
|
445
584
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
585
|
name: string;
|
|
@@ -552,6 +691,116 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
552
691
|
family: CoinFamily;
|
|
553
692
|
explorerUrl: string;
|
|
554
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 Mantra extends Mainnet implements AccountNetwork {
|
|
745
|
+
name: string;
|
|
746
|
+
family: CoinFamily;
|
|
747
|
+
explorerUrl: string;
|
|
748
|
+
}
|
|
749
|
+
declare class MantraTestnet extends Testnet implements AccountNetwork {
|
|
750
|
+
name: string;
|
|
751
|
+
family: CoinFamily;
|
|
752
|
+
explorerUrl: string;
|
|
753
|
+
}
|
|
754
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
755
|
+
name: string;
|
|
756
|
+
family: CoinFamily;
|
|
757
|
+
explorerUrl: string;
|
|
758
|
+
}
|
|
759
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
760
|
+
name: string;
|
|
761
|
+
family: CoinFamily;
|
|
762
|
+
explorerUrl: string;
|
|
763
|
+
}
|
|
764
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
765
|
+
name: string;
|
|
766
|
+
family: CoinFamily;
|
|
767
|
+
explorerUrl: string;
|
|
768
|
+
}
|
|
769
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
770
|
+
name: string;
|
|
771
|
+
family: CoinFamily;
|
|
772
|
+
explorerUrl: string;
|
|
773
|
+
}
|
|
774
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
775
|
+
name: string;
|
|
776
|
+
family: CoinFamily;
|
|
777
|
+
explorerUrl: string;
|
|
778
|
+
}
|
|
779
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
780
|
+
name: string;
|
|
781
|
+
family: CoinFamily;
|
|
782
|
+
explorerUrl: string;
|
|
783
|
+
}
|
|
784
|
+
declare class Asi extends Mainnet implements AccountNetwork {
|
|
785
|
+
name: string;
|
|
786
|
+
family: CoinFamily;
|
|
787
|
+
explorerUrl: string;
|
|
788
|
+
}
|
|
789
|
+
declare class AsiTestnet extends Testnet implements AccountNetwork {
|
|
790
|
+
name: string;
|
|
791
|
+
family: CoinFamily;
|
|
792
|
+
explorerUrl: string;
|
|
793
|
+
}
|
|
794
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
795
|
+
name: string;
|
|
796
|
+
family: CoinFamily;
|
|
797
|
+
explorerUrl: string;
|
|
798
|
+
}
|
|
799
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
800
|
+
name: string;
|
|
801
|
+
family: CoinFamily;
|
|
802
|
+
explorerUrl: string;
|
|
803
|
+
}
|
|
555
804
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
556
805
|
name: string;
|
|
557
806
|
family: CoinFamily;
|
|
@@ -586,9 +835,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
586
835
|
family: CoinFamily;
|
|
587
836
|
explorerUrl: undefined;
|
|
588
837
|
}
|
|
838
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
839
|
+
name: string;
|
|
840
|
+
family: CoinFamily;
|
|
841
|
+
explorerUrl: string;
|
|
842
|
+
}
|
|
843
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
844
|
+
name: string;
|
|
845
|
+
family: CoinFamily;
|
|
846
|
+
explorerUrl: string;
|
|
847
|
+
specName: SubstrateSpecNameType;
|
|
848
|
+
genesisHash: string;
|
|
849
|
+
specVersion: number;
|
|
850
|
+
chainName: string;
|
|
851
|
+
txVersion: number;
|
|
852
|
+
}
|
|
589
853
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
590
854
|
name: string;
|
|
591
855
|
family: CoinFamily;
|
|
856
|
+
accountExplorerUrl: string;
|
|
592
857
|
explorerUrl: string;
|
|
593
858
|
maxFeeLimit: string;
|
|
594
859
|
contractCallFeeLimit: string;
|
|
@@ -596,6 +861,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
596
861
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
597
862
|
name: string;
|
|
598
863
|
family: CoinFamily;
|
|
864
|
+
accountExplorerUrl: string;
|
|
599
865
|
explorerUrl: string;
|
|
600
866
|
maxFeeLimit: string;
|
|
601
867
|
contractCallFeeLimit: string;
|
|
@@ -614,11 +880,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
614
880
|
name: string;
|
|
615
881
|
family: CoinFamily;
|
|
616
882
|
explorerUrl: string;
|
|
883
|
+
accountExplorerUrl: string;
|
|
617
884
|
}
|
|
618
885
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
619
886
|
name: string;
|
|
620
887
|
family: CoinFamily;
|
|
621
888
|
explorerUrl: string;
|
|
889
|
+
accountExplorerUrl: string;
|
|
622
890
|
}
|
|
623
891
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
624
892
|
name: string;
|
|
@@ -657,6 +925,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
657
925
|
walletFactoryAddress: string;
|
|
658
926
|
walletImplementationAddress: string;
|
|
659
927
|
batcherContractAddress: string;
|
|
928
|
+
nativeCoinOperationHashPrefix: string;
|
|
929
|
+
tokenOperationHashPrefix: string;
|
|
660
930
|
}
|
|
661
931
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
662
932
|
name: string;
|
|
@@ -669,22 +939,375 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
669
939
|
walletFactoryAddress: string;
|
|
670
940
|
walletImplementationAddress: string;
|
|
671
941
|
batcherContractAddress: string;
|
|
942
|
+
nativeCoinOperationHashPrefix: string;
|
|
943
|
+
tokenOperationHashPrefix: string;
|
|
944
|
+
}
|
|
945
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
946
|
+
name: string;
|
|
947
|
+
family: CoinFamily;
|
|
948
|
+
explorerUrl: string;
|
|
949
|
+
accountExplorerUrl: string;
|
|
950
|
+
chainId: number;
|
|
951
|
+
nativeCoinOperationHashPrefix: string;
|
|
952
|
+
tokenOperationHashPrefix: string;
|
|
953
|
+
forwarderFactoryAddress: string;
|
|
954
|
+
forwarderImplementationAddress: string;
|
|
955
|
+
walletFactoryAddress: string;
|
|
956
|
+
walletImplementationAddress: string;
|
|
957
|
+
batcherContractAddress: string;
|
|
958
|
+
}
|
|
959
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
960
|
+
name: string;
|
|
961
|
+
family: CoinFamily;
|
|
962
|
+
explorerUrl: string;
|
|
963
|
+
accountExplorerUrl: string;
|
|
964
|
+
chainId: number;
|
|
965
|
+
nativeCoinOperationHashPrefix: string;
|
|
966
|
+
tokenOperationHashPrefix: string;
|
|
967
|
+
forwarderFactoryAddress: string;
|
|
968
|
+
forwarderImplementationAddress: string;
|
|
969
|
+
walletFactoryAddress: string;
|
|
970
|
+
walletImplementationAddress: string;
|
|
971
|
+
batcherContractAddress: string;
|
|
972
|
+
}
|
|
973
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
974
|
+
name: string;
|
|
975
|
+
family: CoinFamily;
|
|
976
|
+
explorerUrl: string;
|
|
977
|
+
accountExplorerUrl: string;
|
|
978
|
+
chainId: number;
|
|
979
|
+
nativeCoinOperationHashPrefix: string;
|
|
980
|
+
tokenOperationHashPrefix: string;
|
|
981
|
+
}
|
|
982
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
983
|
+
name: string;
|
|
984
|
+
family: CoinFamily;
|
|
985
|
+
explorerUrl: string;
|
|
986
|
+
accountExplorerUrl: string;
|
|
987
|
+
chainId: number;
|
|
988
|
+
nativeCoinOperationHashPrefix: string;
|
|
989
|
+
tokenOperationHashPrefix: string;
|
|
990
|
+
forwarderFactoryAddress: string;
|
|
991
|
+
forwarderImplementationAddress: string;
|
|
992
|
+
walletFactoryAddress: string;
|
|
993
|
+
walletImplementationAddress: string;
|
|
994
|
+
}
|
|
995
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
996
|
+
name: string;
|
|
997
|
+
family: CoinFamily;
|
|
998
|
+
explorerUrl: string;
|
|
999
|
+
accountExplorerUrl: string;
|
|
1000
|
+
chainId: number;
|
|
1001
|
+
nativeCoinOperationHashPrefix: string;
|
|
1002
|
+
tokenOperationHashPrefix: string;
|
|
1003
|
+
batcherContractAddress: string;
|
|
1004
|
+
forwarderFactoryAddress: string;
|
|
1005
|
+
forwarderImplementationAddress: string;
|
|
1006
|
+
}
|
|
1007
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1008
|
+
name: string;
|
|
1009
|
+
family: CoinFamily;
|
|
1010
|
+
explorerUrl: string;
|
|
1011
|
+
accountExplorerUrl: string;
|
|
1012
|
+
chainId: number;
|
|
1013
|
+
nativeCoinOperationHashPrefix: string;
|
|
1014
|
+
tokenOperationHashPrefix: string;
|
|
1015
|
+
batcherContractAddress: string;
|
|
1016
|
+
forwarderFactoryAddress: string;
|
|
1017
|
+
forwarderImplementationAddress: string;
|
|
1018
|
+
}
|
|
1019
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1020
|
+
name: string;
|
|
1021
|
+
family: CoinFamily;
|
|
1022
|
+
explorerUrl: string;
|
|
1023
|
+
accountExplorerUrl: string;
|
|
1024
|
+
chainId: number;
|
|
1025
|
+
nativeCoinOperationHashPrefix: string;
|
|
1026
|
+
batcherContractAddress: string;
|
|
1027
|
+
forwarderFactoryAddress: string;
|
|
1028
|
+
forwarderImplementationAddress: string;
|
|
1029
|
+
}
|
|
1030
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1031
|
+
name: string;
|
|
1032
|
+
family: CoinFamily;
|
|
1033
|
+
explorerUrl: string;
|
|
1034
|
+
accountExplorerUrl: string;
|
|
1035
|
+
chainId: number;
|
|
1036
|
+
nativeCoinOperationHashPrefix: string;
|
|
1037
|
+
batcherContractAddress: string;
|
|
1038
|
+
forwarderFactoryAddress: string;
|
|
1039
|
+
forwarderImplementationAddress: string;
|
|
1040
|
+
}
|
|
1041
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1042
|
+
name: string;
|
|
1043
|
+
family: CoinFamily;
|
|
1044
|
+
explorerUrl: string;
|
|
1045
|
+
accountExplorerUrl: string;
|
|
1046
|
+
chainId: number;
|
|
1047
|
+
nativeCoinOperationHashPrefix: string;
|
|
1048
|
+
batcherContractAddress: string;
|
|
1049
|
+
forwarderFactoryAddress: string;
|
|
1050
|
+
forwarderImplementationAddress: string;
|
|
1051
|
+
}
|
|
1052
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1053
|
+
name: string;
|
|
1054
|
+
family: CoinFamily;
|
|
1055
|
+
explorerUrl: string;
|
|
1056
|
+
accountExplorerUrl: string;
|
|
1057
|
+
chainId: number;
|
|
1058
|
+
nativeCoinOperationHashPrefix: string;
|
|
1059
|
+
batcherContractAddress: string;
|
|
1060
|
+
forwarderFactoryAddress: string;
|
|
1061
|
+
forwarderImplementationAddress: string;
|
|
1062
|
+
}
|
|
1063
|
+
declare class ApeChain extends Mainnet implements EthereumNetwork {
|
|
1064
|
+
name: string;
|
|
1065
|
+
family: CoinFamily;
|
|
1066
|
+
explorerUrl: string;
|
|
1067
|
+
accountExplorerUrl: string;
|
|
1068
|
+
chainId: number;
|
|
1069
|
+
nativeCoinOperationHashPrefix: string;
|
|
1070
|
+
}
|
|
1071
|
+
declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1072
|
+
name: string;
|
|
1073
|
+
family: CoinFamily;
|
|
1074
|
+
explorerUrl: string;
|
|
1075
|
+
accountExplorerUrl: string;
|
|
1076
|
+
chainId: number;
|
|
1077
|
+
nativeCoinOperationHashPrefix: string;
|
|
1078
|
+
}
|
|
1079
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1080
|
+
name: string;
|
|
1081
|
+
family: CoinFamily;
|
|
1082
|
+
explorerUrl: string;
|
|
1083
|
+
accountExplorerUrl: string;
|
|
1084
|
+
chainId: number;
|
|
1085
|
+
nativeCoinOperationHashPrefix: string;
|
|
1086
|
+
batcherContractAddress: string;
|
|
1087
|
+
forwarderFactoryAddress: string;
|
|
1088
|
+
forwarderImplementationAddress: string;
|
|
1089
|
+
}
|
|
1090
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1091
|
+
name: string;
|
|
1092
|
+
family: CoinFamily;
|
|
1093
|
+
explorerUrl: string;
|
|
1094
|
+
accountExplorerUrl: string;
|
|
1095
|
+
chainId: number;
|
|
1096
|
+
nativeCoinOperationHashPrefix: string;
|
|
1097
|
+
batcherContractAddress: string;
|
|
1098
|
+
forwarderFactoryAddress: string;
|
|
1099
|
+
forwarderImplementationAddress: string;
|
|
1100
|
+
}
|
|
1101
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1102
|
+
name: string;
|
|
1103
|
+
family: CoinFamily;
|
|
1104
|
+
explorerUrl: string;
|
|
1105
|
+
accountExplorerUrl: string;
|
|
1106
|
+
chainId: number;
|
|
1107
|
+
nativeCoinOperationHashPrefix: string;
|
|
1108
|
+
batcherContractAddress: string;
|
|
1109
|
+
forwarderFactoryAddress: string;
|
|
1110
|
+
forwarderImplementationAddress: string;
|
|
1111
|
+
}
|
|
1112
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1113
|
+
name: string;
|
|
1114
|
+
family: CoinFamily;
|
|
1115
|
+
explorerUrl: string;
|
|
1116
|
+
accountExplorerUrl: string;
|
|
1117
|
+
chainId: number;
|
|
1118
|
+
nativeCoinOperationHashPrefix: string;
|
|
1119
|
+
batcherContractAddress: string;
|
|
1120
|
+
forwarderFactoryAddress: string;
|
|
1121
|
+
forwarderImplementationAddress: string;
|
|
1122
|
+
}
|
|
1123
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1124
|
+
name: string;
|
|
1125
|
+
family: CoinFamily;
|
|
1126
|
+
explorerUrl: string;
|
|
1127
|
+
accountExplorerUrl: string;
|
|
1128
|
+
chainId: number;
|
|
1129
|
+
nativeCoinOperationHashPrefix: string;
|
|
1130
|
+
}
|
|
1131
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1132
|
+
name: string;
|
|
1133
|
+
family: CoinFamily;
|
|
1134
|
+
explorerUrl: string;
|
|
1135
|
+
chainId: number;
|
|
1136
|
+
nativeCoinOperationHashPrefix: string;
|
|
1137
|
+
}
|
|
1138
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1139
|
+
name: string;
|
|
1140
|
+
family: CoinFamily;
|
|
1141
|
+
explorerUrl: string;
|
|
1142
|
+
accountExplorerUrl: string;
|
|
1143
|
+
chainId: number;
|
|
1144
|
+
nativeCoinOperationHashPrefix: string;
|
|
1145
|
+
}
|
|
1146
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1147
|
+
name: string;
|
|
1148
|
+
family: CoinFamily;
|
|
1149
|
+
explorerUrl: string;
|
|
1150
|
+
accountExplorerUrl: string;
|
|
1151
|
+
chainId: number;
|
|
1152
|
+
nativeCoinOperationHashPrefix: string;
|
|
1153
|
+
batcherContractAddress: string;
|
|
1154
|
+
forwarderFactoryAddress: string;
|
|
1155
|
+
forwarderImplementationAddress: string;
|
|
1156
|
+
}
|
|
1157
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1158
|
+
name: string;
|
|
1159
|
+
family: CoinFamily;
|
|
1160
|
+
explorerUrl: string;
|
|
1161
|
+
accountExplorerUrl: string;
|
|
1162
|
+
chainId: number;
|
|
1163
|
+
nativeCoinOperationHashPrefix: string;
|
|
1164
|
+
}
|
|
1165
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1166
|
+
name: string;
|
|
1167
|
+
family: CoinFamily;
|
|
1168
|
+
explorerUrl: string;
|
|
1169
|
+
accountExplorerUrl: string;
|
|
1170
|
+
chainId: number;
|
|
1171
|
+
nativeCoinOperationHashPrefix: string;
|
|
1172
|
+
batcherContractAddress: string;
|
|
1173
|
+
forwarderFactoryAddress: string;
|
|
1174
|
+
forwarderImplementationAddress: string;
|
|
1175
|
+
}
|
|
1176
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1177
|
+
name: string;
|
|
1178
|
+
family: CoinFamily;
|
|
1179
|
+
explorerUrl: string;
|
|
1180
|
+
chainId: number;
|
|
1181
|
+
nativeCoinOperationHashPrefix: string;
|
|
1182
|
+
}
|
|
1183
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1184
|
+
name: string;
|
|
1185
|
+
family: CoinFamily;
|
|
1186
|
+
explorerUrl: string;
|
|
1187
|
+
accountExplorerUrl: string;
|
|
1188
|
+
chainId: number;
|
|
1189
|
+
nativeCoinOperationHashPrefix: string;
|
|
1190
|
+
}
|
|
1191
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1192
|
+
name: string;
|
|
1193
|
+
family: CoinFamily;
|
|
1194
|
+
explorerUrl: string;
|
|
1195
|
+
accountExplorerUrl: string;
|
|
1196
|
+
chainId: number;
|
|
1197
|
+
nativeCoinOperationHashPrefix: string;
|
|
1198
|
+
batcherContractAddress: string;
|
|
1199
|
+
forwarderFactoryAddress: string;
|
|
1200
|
+
forwarderImplementationAddress: string;
|
|
1201
|
+
}
|
|
1202
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1203
|
+
name: string;
|
|
1204
|
+
family: CoinFamily;
|
|
1205
|
+
explorerUrl: string;
|
|
1206
|
+
accountExplorerUrl: string;
|
|
1207
|
+
chainId: number;
|
|
1208
|
+
nativeCoinOperationHashPrefix: string;
|
|
1209
|
+
batcherContractAddress: string;
|
|
1210
|
+
forwarderFactoryAddress: string;
|
|
1211
|
+
forwarderImplementationAddress: string;
|
|
1212
|
+
}
|
|
1213
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1214
|
+
name: string;
|
|
1215
|
+
family: CoinFamily;
|
|
1216
|
+
explorerUrl: string;
|
|
1217
|
+
accountExplorerUrl: string;
|
|
1218
|
+
chainId: number;
|
|
1219
|
+
nativeCoinOperationHashPrefix: string;
|
|
1220
|
+
batcherContractAddress: string;
|
|
1221
|
+
forwarderFactoryAddress: string;
|
|
1222
|
+
forwarderImplementationAddress: string;
|
|
1223
|
+
}
|
|
1224
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1225
|
+
name: string;
|
|
1226
|
+
family: CoinFamily;
|
|
1227
|
+
explorerUrl: string;
|
|
1228
|
+
accountExplorerUrl: string;
|
|
1229
|
+
chainId: number;
|
|
1230
|
+
nativeCoinOperationHashPrefix: string;
|
|
1231
|
+
batcherContractAddress: string;
|
|
1232
|
+
forwarderFactoryAddress: string;
|
|
1233
|
+
forwarderImplementationAddress: string;
|
|
1234
|
+
}
|
|
1235
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1236
|
+
name: string;
|
|
1237
|
+
family: CoinFamily;
|
|
1238
|
+
explorerUrl: string;
|
|
1239
|
+
accountExplorerUrl: string;
|
|
1240
|
+
chainId: number;
|
|
1241
|
+
nativeCoinOperationHashPrefix: string;
|
|
1242
|
+
tokenOperationHashPrefix: string;
|
|
1243
|
+
forwarderFactoryAddress: string;
|
|
1244
|
+
forwarderImplementationAddress: string;
|
|
1245
|
+
walletFactoryAddress: string;
|
|
1246
|
+
walletImplementationAddress: string;
|
|
1247
|
+
}
|
|
1248
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1249
|
+
name: string;
|
|
1250
|
+
family: CoinFamily;
|
|
1251
|
+
explorerUrl: string;
|
|
1252
|
+
accountExplorerUrl: string;
|
|
1253
|
+
chainId: number;
|
|
1254
|
+
nativeCoinOperationHashPrefix: string;
|
|
1255
|
+
tokenOperationHashPrefix: string;
|
|
1256
|
+
forwarderFactoryAddress: string;
|
|
1257
|
+
forwarderImplementationAddress: string;
|
|
1258
|
+
walletFactoryAddress: string;
|
|
1259
|
+
walletImplementationAddress: string;
|
|
1260
|
+
}
|
|
1261
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1262
|
+
name: string;
|
|
1263
|
+
family: CoinFamily;
|
|
1264
|
+
explorerUrl: string;
|
|
1265
|
+
}
|
|
1266
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1267
|
+
name: string;
|
|
1268
|
+
family: CoinFamily;
|
|
1269
|
+
explorerUrl: string;
|
|
1270
|
+
specName: SubstrateSpecNameType;
|
|
1271
|
+
genesisHash: string;
|
|
1272
|
+
specVersion: number;
|
|
1273
|
+
chainName: string;
|
|
1274
|
+
txVersion: number;
|
|
1275
|
+
}
|
|
1276
|
+
declare class Vet extends Mainnet implements AccountNetwork {
|
|
1277
|
+
name: string;
|
|
1278
|
+
family: CoinFamily;
|
|
1279
|
+
explorerUrl: string;
|
|
1280
|
+
}
|
|
1281
|
+
declare class VetTestnet extends Testnet implements AccountNetwork {
|
|
1282
|
+
name: string;
|
|
1283
|
+
family: CoinFamily;
|
|
1284
|
+
explorerUrl: string;
|
|
672
1285
|
}
|
|
673
1286
|
export declare const Networks: {
|
|
674
1287
|
main: {
|
|
675
1288
|
ada: Readonly<Ada>;
|
|
676
1289
|
algorand: Readonly<Algorand>;
|
|
1290
|
+
apechain: Readonly<ApeChain>;
|
|
1291
|
+
apt: Readonly<Apt>;
|
|
1292
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1293
|
+
asi: Readonly<Asi>;
|
|
677
1294
|
atom: Readonly<Atom>;
|
|
678
1295
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1296
|
avalancheP: Readonly<AvalancheP>;
|
|
1297
|
+
baby: Readonly<Baby>;
|
|
1298
|
+
basechain: Readonly<BaseChain>;
|
|
680
1299
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1300
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1301
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1302
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1303
|
+
bera: Readonly<Berachain>;
|
|
684
1304
|
bld: Readonly<Bld>;
|
|
685
1305
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1306
|
casper: Readonly<Casper>;
|
|
687
1307
|
celo: Readonly<Celo>;
|
|
1308
|
+
coredao: Readonly<Coredao>;
|
|
1309
|
+
coreum: Readonly<Coreum>;
|
|
1310
|
+
cronos: Readonly<Cronos>;
|
|
688
1311
|
dash: Readonly<Dash>;
|
|
689
1312
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1313
|
dot: Readonly<Polkadot>;
|
|
@@ -695,73 +1318,133 @@ export declare const Networks: {
|
|
|
695
1318
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1319
|
ethereumW: Readonly<EthereumW>;
|
|
697
1320
|
fiat: Readonly<Fiat>;
|
|
1321
|
+
fetchai: Readonly<FetchAi>;
|
|
1322
|
+
flr: Readonly<Flare>;
|
|
698
1323
|
hash: Readonly<Hash>;
|
|
699
1324
|
hedera: Readonly<Hedera>;
|
|
1325
|
+
icp: Readonly<Icp>;
|
|
1326
|
+
initia: Readonly<Initia>;
|
|
700
1327
|
injective: Readonly<Injective>;
|
|
1328
|
+
islm: Readonly<Islm>;
|
|
1329
|
+
kava: Readonly<Kava>;
|
|
1330
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1331
|
litecoin: Readonly<Litecoin>;
|
|
1332
|
+
mon: Readonly<Monad>;
|
|
1333
|
+
mantra: Readonly<Mantra>;
|
|
702
1334
|
polygon: Readonly<Polygon>;
|
|
1335
|
+
polyx: Readonly<Polymesh>;
|
|
1336
|
+
oas: Readonly<Oas>;
|
|
703
1337
|
ofc: Readonly<Ofc>;
|
|
1338
|
+
optimism: Readonly<Optimism>;
|
|
704
1339
|
osmo: Readonly<Osmo>;
|
|
705
1340
|
rbtc: Readonly<Rbtc>;
|
|
1341
|
+
rune: Readonly<Rune>;
|
|
706
1342
|
stellar: Readonly<Stellar>;
|
|
707
1343
|
sei: Readonly<Sei>;
|
|
1344
|
+
sgb: Readonly<Songbird>;
|
|
708
1345
|
sol: Readonly<Sol>;
|
|
709
1346
|
sui: Readonly<Sui>;
|
|
710
1347
|
near: Readonly<Near>;
|
|
711
1348
|
stx: Readonly<Stx>;
|
|
1349
|
+
stt: Readonly<Somnia>;
|
|
1350
|
+
soneium: Readonly<Soneium>;
|
|
712
1351
|
susd: Readonly<SUSD>;
|
|
1352
|
+
tao: Readonly<Bittensor>;
|
|
713
1353
|
tia: Readonly<Tia>;
|
|
1354
|
+
ton: Readonly<Ton>;
|
|
714
1355
|
trx: Readonly<Trx>;
|
|
1356
|
+
vet: Readonly<Vet>;
|
|
1357
|
+
wemix: Readonly<Wemix>;
|
|
1358
|
+
world: Readonly<World>;
|
|
1359
|
+
xdc: Readonly<Xdc>;
|
|
715
1360
|
xrp: Readonly<Xrp>;
|
|
716
1361
|
xtz: Readonly<Xtz>;
|
|
717
1362
|
zCash: Readonly<ZCash>;
|
|
718
1363
|
zeta: Readonly<Zeta>;
|
|
1364
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1365
|
};
|
|
720
1366
|
test: {
|
|
721
1367
|
ada: Readonly<AdaTestnet>;
|
|
722
1368
|
algorand: Readonly<AlgorandTestnet>;
|
|
1369
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1370
|
+
apt: Readonly<AptTestnet>;
|
|
1371
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1372
|
+
asi: Readonly<AsiTestnet>;
|
|
723
1373
|
atom: Readonly<AtomTestnet>;
|
|
724
1374
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1375
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1376
|
+
baby: Readonly<BabyTestnet>;
|
|
1377
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1378
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1379
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1380
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1381
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1382
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1383
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1384
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1385
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1386
|
bld: Readonly<BldTestnet>;
|
|
731
1387
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1388
|
casper: Readonly<CasperTestnet>;
|
|
1389
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1390
|
celo: Readonly<CeloTestnet>;
|
|
1391
|
+
cronos: Readonly<CronosTestnet>;
|
|
734
1392
|
dash: Readonly<DashTestnet>;
|
|
735
1393
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
736
1394
|
dot: Readonly<PolkadotTestnet>;
|
|
737
1395
|
eCash: Readonly<ECashTestnet>;
|
|
738
1396
|
eos: Readonly<EosTestnet>;
|
|
739
1397
|
fiat: Readonly<FiatTestnet>;
|
|
1398
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1399
|
+
flr: Readonly<FlareTestnet>;
|
|
1400
|
+
mon: Readonly<MonadTestnet>;
|
|
740
1401
|
pyrmont: Readonly<Pyrmont>;
|
|
741
1402
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1403
|
hash: Readonly<HashTestnet>;
|
|
743
1404
|
hedera: Readonly<HederaTestnet>;
|
|
1405
|
+
icp: Readonly<IcpTestnet>;
|
|
1406
|
+
initia: Readonly<InitiaTestnet>;
|
|
744
1407
|
injective: Readonly<InjectiveTestnet>;
|
|
1408
|
+
islm: Readonly<IslmTestnet>;
|
|
1409
|
+
kava: Readonly<KavaTestnet>;
|
|
745
1410
|
kovan: Readonly<Kovan>;
|
|
746
1411
|
goerli: Readonly<Goerli>;
|
|
1412
|
+
holesky: Readonly<Holesky>;
|
|
1413
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1414
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1415
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1416
|
polygon: Readonly<PolygonTestnet>;
|
|
1417
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1418
|
+
oas: Readonly<OasTestnet>;
|
|
749
1419
|
ofc: Readonly<OfcTestnet>;
|
|
1420
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1421
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1422
|
rbtc: Readonly<RbtcTestnet>;
|
|
1423
|
+
rune: Readonly<RuneTestNet>;
|
|
1424
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1425
|
stellar: Readonly<StellarTestnet>;
|
|
753
1426
|
sei: Readonly<SeiTestnet>;
|
|
754
1427
|
sol: Readonly<SolTestnet>;
|
|
755
1428
|
sui: Readonly<SuiTestnet>;
|
|
756
1429
|
near: Readonly<NearTestnet>;
|
|
757
1430
|
stx: Readonly<StxTestnet>;
|
|
1431
|
+
stt: Readonly<SomniaTestnet>;
|
|
1432
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
758
1433
|
susd: Readonly<SUSDTestnet>;
|
|
1434
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1435
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1436
|
tia: Readonly<TiaTestnet>;
|
|
1437
|
+
ton: Readonly<TonTestnet>;
|
|
760
1438
|
trx: Readonly<TrxTestnet>;
|
|
1439
|
+
vet: Readonly<VetTestnet>;
|
|
1440
|
+
wemix: Readonly<WemixTestnet>;
|
|
1441
|
+
world: Readonly<WorldTestnet>;
|
|
1442
|
+
xdc: Readonly<XdcTestnet>;
|
|
761
1443
|
xrp: Readonly<XrpTestnet>;
|
|
762
1444
|
xtz: Readonly<XtzTestnet>;
|
|
763
1445
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1446
|
zeta: Readonly<ZetaTestnet>;
|
|
1447
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1448
|
};
|
|
766
1449
|
};
|
|
767
1450
|
export {};
|