@bitgo-beta/statics 15.1.1-beta.94 → 15.1.1-beta.941
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 +2858 -0
- package/dist/src/account.d.ts +506 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +838 -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 +1431 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1485 -50
- package/dist/src/coinFeatures.d.ts +86 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +548 -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 +540 -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 +690 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +929 -43
- 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 +153 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +615 -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
|
@@ -11,6 +11,15 @@ export declare abstract class BaseNetwork {
|
|
|
11
11
|
}
|
|
12
12
|
export interface UtxoNetwork extends BaseNetwork {
|
|
13
13
|
utxolibName: string;
|
|
14
|
+
paygoAddressAttestationPubkey?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface LightningNetwork extends UtxoNetwork {
|
|
17
|
+
/**
|
|
18
|
+
* The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
19
|
+
* between the user's extended private key and the Lightning service. This key facilitates secure communication
|
|
20
|
+
* by enabling the creation of a shared secret for encryption and decryption of data.
|
|
21
|
+
*/
|
|
22
|
+
lightningServicePubKey: string;
|
|
14
23
|
}
|
|
15
24
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
25
|
utxolibName: string;
|
|
@@ -40,6 +49,7 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
49
|
readonly minDelegationFee: string;
|
|
41
50
|
readonly avaxAssetID: string;
|
|
42
51
|
readonly txFee: string;
|
|
52
|
+
readonly maxImportFee: string;
|
|
43
53
|
}
|
|
44
54
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
55
|
readonly accountExplorerUrl?: string;
|
|
@@ -48,7 +58,8 @@ export interface AccountNetwork extends BaseNetwork {
|
|
|
48
58
|
/**
|
|
49
59
|
* Specification name type of the chain. Used in setting up the registry
|
|
50
60
|
*/
|
|
51
|
-
export
|
|
61
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
62
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet';
|
|
52
63
|
export interface DotNetwork extends AccountNetwork {
|
|
53
64
|
readonly specName: PolkadotSpecNameType;
|
|
54
65
|
readonly genesisHash: string;
|
|
@@ -61,6 +72,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
72
|
readonly batcherContractAddress?: string;
|
|
62
73
|
readonly forwarderFactoryAddress?: string;
|
|
63
74
|
readonly forwarderImplementationAddress?: string;
|
|
75
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
76
|
+
readonly tokenOperationHashPrefix?: string;
|
|
64
77
|
}
|
|
65
78
|
export interface TronNetwork extends AccountNetwork {
|
|
66
79
|
maxFeeLimit: string;
|
|
@@ -110,6 +123,60 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
123
|
poolDeposit: number;
|
|
111
124
|
stakeKeyDeposit: number;
|
|
112
125
|
}
|
|
126
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
127
|
+
name: string;
|
|
128
|
+
family: CoinFamily;
|
|
129
|
+
explorerUrl: string;
|
|
130
|
+
accountExplorerUrl: string;
|
|
131
|
+
blockExplorerUrl: string;
|
|
132
|
+
}
|
|
133
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
134
|
+
name: string;
|
|
135
|
+
family: CoinFamily;
|
|
136
|
+
explorerUrl: string;
|
|
137
|
+
accountExplorerUrl: string;
|
|
138
|
+
blockExplorerUrl: string;
|
|
139
|
+
}
|
|
140
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
141
|
+
name: string;
|
|
142
|
+
family: CoinFamily;
|
|
143
|
+
explorerUrl: string;
|
|
144
|
+
accountExplorerUrl: string;
|
|
145
|
+
}
|
|
146
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
147
|
+
name: string;
|
|
148
|
+
family: CoinFamily;
|
|
149
|
+
explorerUrl: string;
|
|
150
|
+
accountExplorerUrl: string;
|
|
151
|
+
}
|
|
152
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
153
|
+
name: string;
|
|
154
|
+
family: CoinFamily;
|
|
155
|
+
explorerUrl: string;
|
|
156
|
+
accountExplorerUrl: string;
|
|
157
|
+
chainId: number;
|
|
158
|
+
nativeCoinOperationHashPrefix: string;
|
|
159
|
+
tokenOperationHashPrefix: string;
|
|
160
|
+
forwarderFactoryAddress: string;
|
|
161
|
+
forwarderImplementationAddress: string;
|
|
162
|
+
walletFactoryAddress: string;
|
|
163
|
+
walletImplementationAddress: string;
|
|
164
|
+
batcherContractAddress: 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
|
+
batcherContractAddress: string;
|
|
179
|
+
}
|
|
113
180
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
181
|
name: string;
|
|
115
182
|
family: CoinFamily;
|
|
@@ -137,6 +204,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
204
|
alias: string;
|
|
138
205
|
vm: string;
|
|
139
206
|
txFee: string;
|
|
207
|
+
maxImportFee: string;
|
|
140
208
|
createSubnetTx: string;
|
|
141
209
|
createChainTx: string;
|
|
142
210
|
creationTxFee: string;
|
|
@@ -162,6 +230,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
230
|
hrp: string;
|
|
163
231
|
vm: string;
|
|
164
232
|
txFee: string;
|
|
233
|
+
maxImportFee: string;
|
|
165
234
|
createSubnetTx: string;
|
|
166
235
|
createChainTx: string;
|
|
167
236
|
creationTxFee: string;
|
|
@@ -180,6 +249,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
249
|
explorerUrl: string;
|
|
181
250
|
accountExplorerUrl: string;
|
|
182
251
|
chainId: number;
|
|
252
|
+
nativeCoinOperationHashPrefix: string;
|
|
253
|
+
tokenOperationHashPrefix: string;
|
|
254
|
+
batcherContractAddress: string;
|
|
183
255
|
}
|
|
184
256
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
257
|
name: string;
|
|
@@ -187,6 +259,23 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
259
|
explorerUrl: string;
|
|
188
260
|
accountExplorerUrl: string;
|
|
189
261
|
chainId: number;
|
|
262
|
+
nativeCoinOperationHashPrefix: string;
|
|
263
|
+
tokenOperationHashPrefix: string;
|
|
264
|
+
batcherContractAddress: string;
|
|
265
|
+
}
|
|
266
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
267
|
+
name: string;
|
|
268
|
+
family: CoinFamily;
|
|
269
|
+
utxolibName: string;
|
|
270
|
+
explorerUrl: string;
|
|
271
|
+
lightningServicePubKey: string;
|
|
272
|
+
}
|
|
273
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
274
|
+
name: string;
|
|
275
|
+
family: CoinFamily;
|
|
276
|
+
utxolibName: string;
|
|
277
|
+
explorerUrl: string;
|
|
278
|
+
lightningServicePubKey: string;
|
|
190
279
|
}
|
|
191
280
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
281
|
name: string;
|
|
@@ -199,6 +288,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
199
288
|
family: CoinFamily;
|
|
200
289
|
utxolibName: string;
|
|
201
290
|
explorerUrl: string;
|
|
291
|
+
paygoAddressAttestationPubkey: string;
|
|
292
|
+
}
|
|
293
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
294
|
+
name: string;
|
|
295
|
+
family: CoinFamily;
|
|
296
|
+
utxolibName: string;
|
|
297
|
+
explorerUrl: string;
|
|
298
|
+
}
|
|
299
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
300
|
+
name: string;
|
|
301
|
+
family: CoinFamily;
|
|
302
|
+
utxolibName: string;
|
|
303
|
+
explorerUrl: string;
|
|
304
|
+
}
|
|
305
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
306
|
+
name: string;
|
|
307
|
+
family: CoinFamily;
|
|
308
|
+
utxolibName: string;
|
|
309
|
+
explorerUrl: string;
|
|
202
310
|
}
|
|
203
311
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
312
|
name: string;
|
|
@@ -298,6 +406,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
298
406
|
explorerUrl: string;
|
|
299
407
|
accountExplorerUrl: string;
|
|
300
408
|
chainId: number;
|
|
409
|
+
nativeCoinOperationHashPrefix: string;
|
|
410
|
+
tokenOperationHashPrefix: string;
|
|
301
411
|
}
|
|
302
412
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
303
413
|
name: string;
|
|
@@ -305,6 +415,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
305
415
|
explorerUrl: string;
|
|
306
416
|
accountExplorerUrl: string;
|
|
307
417
|
chainId: number;
|
|
418
|
+
nativeCoinOperationHashPrefix: string;
|
|
419
|
+
tokenOperationHashPrefix: string;
|
|
308
420
|
}
|
|
309
421
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
310
422
|
name: string;
|
|
@@ -328,6 +440,8 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
328
440
|
batcherContractAddress: string;
|
|
329
441
|
forwarderFactoryAddress: string;
|
|
330
442
|
forwarderImplementationAddress: string;
|
|
443
|
+
nativeCoinOperationHashPrefix: string;
|
|
444
|
+
tokenOperationHashPrefix: string;
|
|
331
445
|
}
|
|
332
446
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
333
447
|
name: string;
|
|
@@ -344,6 +458,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
344
458
|
batcherContractAddress: string;
|
|
345
459
|
forwarderFactoryAddress: string;
|
|
346
460
|
forwarderImplementationAddress: string;
|
|
461
|
+
nativeCoinOperationHashPrefix: string;
|
|
462
|
+
tokenOperationHashPrefix: string;
|
|
347
463
|
}
|
|
348
464
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
349
465
|
name: string;
|
|
@@ -360,6 +476,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
360
476
|
batcherContractAddress: string;
|
|
361
477
|
forwarderFactoryAddress: string;
|
|
362
478
|
forwarderImplementationAddress: string;
|
|
479
|
+
nativeCoinOperationHashPrefix: string;
|
|
480
|
+
tokenOperationHashPrefix: string;
|
|
363
481
|
}
|
|
364
482
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
365
483
|
name: string;
|
|
@@ -371,6 +489,21 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
371
489
|
batcherContractAddress: string;
|
|
372
490
|
forwarderFactoryAddress: string;
|
|
373
491
|
forwarderImplementationAddress: string;
|
|
492
|
+
nativeCoinOperationHashPrefix: string;
|
|
493
|
+
tokenOperationHashPrefix: string;
|
|
494
|
+
}
|
|
495
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
496
|
+
name: string;
|
|
497
|
+
family: CoinFamily;
|
|
498
|
+
explorerUrl: string;
|
|
499
|
+
accountExplorerUrl: string;
|
|
500
|
+
blockExplorerUrl: string;
|
|
501
|
+
chainId: number;
|
|
502
|
+
batcherContractAddress: string;
|
|
503
|
+
forwarderFactoryAddress: string;
|
|
504
|
+
forwarderImplementationAddress: string;
|
|
505
|
+
nativeCoinOperationHashPrefix: string;
|
|
506
|
+
tokenOperationHashPrefix: string;
|
|
374
507
|
}
|
|
375
508
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
509
|
name: string;
|
|
@@ -378,6 +511,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
511
|
explorerUrl: string;
|
|
379
512
|
accountExplorerUrl: string;
|
|
380
513
|
chainId: number;
|
|
514
|
+
nativeCoinOperationHashPrefix: string;
|
|
515
|
+
tokenOperationHashPrefix: string;
|
|
381
516
|
}
|
|
382
517
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
518
|
name: string;
|
|
@@ -385,6 +520,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
520
|
explorerUrl: string;
|
|
386
521
|
accountExplorerUrl: string;
|
|
387
522
|
chainId: number;
|
|
523
|
+
nativeCoinOperationHashPrefix: string;
|
|
524
|
+
tokenOperationHashPrefix: string;
|
|
388
525
|
}
|
|
389
526
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
527
|
name: string;
|
|
@@ -434,6 +571,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
571
|
explorerUrl: string;
|
|
435
572
|
accountExplorerUrl: string;
|
|
436
573
|
chainId: number;
|
|
574
|
+
nativeCoinOperationHashPrefix: string;
|
|
575
|
+
tokenOperationHashPrefix: string;
|
|
437
576
|
}
|
|
438
577
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
578
|
name: string;
|
|
@@ -441,6 +580,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
580
|
explorerUrl: string;
|
|
442
581
|
accountExplorerUrl: string;
|
|
443
582
|
chainId: number;
|
|
583
|
+
nativeCoinOperationHashPrefix: string;
|
|
584
|
+
tokenOperationHashPrefix: string;
|
|
444
585
|
}
|
|
445
586
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
587
|
name: string;
|
|
@@ -552,6 +693,116 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
552
693
|
family: CoinFamily;
|
|
553
694
|
explorerUrl: string;
|
|
554
695
|
}
|
|
696
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
697
|
+
name: string;
|
|
698
|
+
family: CoinFamily;
|
|
699
|
+
explorerUrl: string;
|
|
700
|
+
}
|
|
701
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
702
|
+
name: string;
|
|
703
|
+
family: CoinFamily;
|
|
704
|
+
explorerUrl: string;
|
|
705
|
+
}
|
|
706
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
707
|
+
name: string;
|
|
708
|
+
family: CoinFamily;
|
|
709
|
+
explorerUrl: string;
|
|
710
|
+
}
|
|
711
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
712
|
+
name: string;
|
|
713
|
+
family: CoinFamily;
|
|
714
|
+
explorerUrl: string;
|
|
715
|
+
}
|
|
716
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
717
|
+
name: string;
|
|
718
|
+
family: CoinFamily;
|
|
719
|
+
explorerUrl: string;
|
|
720
|
+
}
|
|
721
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
722
|
+
name: string;
|
|
723
|
+
family: CoinFamily;
|
|
724
|
+
explorerUrl: string;
|
|
725
|
+
}
|
|
726
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
727
|
+
name: string;
|
|
728
|
+
family: CoinFamily;
|
|
729
|
+
explorerUrl: string;
|
|
730
|
+
}
|
|
731
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
732
|
+
name: string;
|
|
733
|
+
family: CoinFamily;
|
|
734
|
+
explorerUrl: string;
|
|
735
|
+
}
|
|
736
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
737
|
+
name: string;
|
|
738
|
+
family: CoinFamily;
|
|
739
|
+
explorerUrl: string;
|
|
740
|
+
}
|
|
741
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
742
|
+
name: string;
|
|
743
|
+
family: CoinFamily;
|
|
744
|
+
explorerUrl: string;
|
|
745
|
+
}
|
|
746
|
+
declare class Mantra extends Mainnet implements AccountNetwork {
|
|
747
|
+
name: string;
|
|
748
|
+
family: CoinFamily;
|
|
749
|
+
explorerUrl: string;
|
|
750
|
+
}
|
|
751
|
+
declare class MantraTestnet extends Testnet implements AccountNetwork {
|
|
752
|
+
name: string;
|
|
753
|
+
family: CoinFamily;
|
|
754
|
+
explorerUrl: string;
|
|
755
|
+
}
|
|
756
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
757
|
+
name: string;
|
|
758
|
+
family: CoinFamily;
|
|
759
|
+
explorerUrl: string;
|
|
760
|
+
}
|
|
761
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
762
|
+
name: string;
|
|
763
|
+
family: CoinFamily;
|
|
764
|
+
explorerUrl: string;
|
|
765
|
+
}
|
|
766
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
767
|
+
name: string;
|
|
768
|
+
family: CoinFamily;
|
|
769
|
+
explorerUrl: string;
|
|
770
|
+
}
|
|
771
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
772
|
+
name: string;
|
|
773
|
+
family: CoinFamily;
|
|
774
|
+
explorerUrl: string;
|
|
775
|
+
}
|
|
776
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
777
|
+
name: string;
|
|
778
|
+
family: CoinFamily;
|
|
779
|
+
explorerUrl: string;
|
|
780
|
+
}
|
|
781
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
782
|
+
name: string;
|
|
783
|
+
family: CoinFamily;
|
|
784
|
+
explorerUrl: string;
|
|
785
|
+
}
|
|
786
|
+
declare class Asi extends Mainnet implements AccountNetwork {
|
|
787
|
+
name: string;
|
|
788
|
+
family: CoinFamily;
|
|
789
|
+
explorerUrl: string;
|
|
790
|
+
}
|
|
791
|
+
declare class AsiTestnet extends Testnet implements AccountNetwork {
|
|
792
|
+
name: string;
|
|
793
|
+
family: CoinFamily;
|
|
794
|
+
explorerUrl: string;
|
|
795
|
+
}
|
|
796
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
797
|
+
name: string;
|
|
798
|
+
family: CoinFamily;
|
|
799
|
+
explorerUrl: string;
|
|
800
|
+
}
|
|
801
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
802
|
+
name: string;
|
|
803
|
+
family: CoinFamily;
|
|
804
|
+
explorerUrl: string;
|
|
805
|
+
}
|
|
555
806
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
556
807
|
name: string;
|
|
557
808
|
family: CoinFamily;
|
|
@@ -586,9 +837,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
586
837
|
family: CoinFamily;
|
|
587
838
|
explorerUrl: undefined;
|
|
588
839
|
}
|
|
840
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
841
|
+
name: string;
|
|
842
|
+
family: CoinFamily;
|
|
843
|
+
explorerUrl: string;
|
|
844
|
+
}
|
|
845
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
846
|
+
name: string;
|
|
847
|
+
family: CoinFamily;
|
|
848
|
+
explorerUrl: string;
|
|
849
|
+
specName: SubstrateSpecNameType;
|
|
850
|
+
genesisHash: string;
|
|
851
|
+
specVersion: number;
|
|
852
|
+
chainName: string;
|
|
853
|
+
txVersion: number;
|
|
854
|
+
}
|
|
589
855
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
590
856
|
name: string;
|
|
591
857
|
family: CoinFamily;
|
|
858
|
+
accountExplorerUrl: string;
|
|
592
859
|
explorerUrl: string;
|
|
593
860
|
maxFeeLimit: string;
|
|
594
861
|
contractCallFeeLimit: string;
|
|
@@ -596,6 +863,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
596
863
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
597
864
|
name: string;
|
|
598
865
|
family: CoinFamily;
|
|
866
|
+
accountExplorerUrl: string;
|
|
599
867
|
explorerUrl: string;
|
|
600
868
|
maxFeeLimit: string;
|
|
601
869
|
contractCallFeeLimit: string;
|
|
@@ -614,11 +882,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
614
882
|
name: string;
|
|
615
883
|
family: CoinFamily;
|
|
616
884
|
explorerUrl: string;
|
|
885
|
+
accountExplorerUrl: string;
|
|
617
886
|
}
|
|
618
887
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
619
888
|
name: string;
|
|
620
889
|
family: CoinFamily;
|
|
621
890
|
explorerUrl: string;
|
|
891
|
+
accountExplorerUrl: string;
|
|
622
892
|
}
|
|
623
893
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
624
894
|
name: string;
|
|
@@ -657,6 +927,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
657
927
|
walletFactoryAddress: string;
|
|
658
928
|
walletImplementationAddress: string;
|
|
659
929
|
batcherContractAddress: string;
|
|
930
|
+
nativeCoinOperationHashPrefix: string;
|
|
931
|
+
tokenOperationHashPrefix: string;
|
|
660
932
|
}
|
|
661
933
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
662
934
|
name: string;
|
|
@@ -669,22 +941,379 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
669
941
|
walletFactoryAddress: string;
|
|
670
942
|
walletImplementationAddress: string;
|
|
671
943
|
batcherContractAddress: string;
|
|
944
|
+
nativeCoinOperationHashPrefix: string;
|
|
945
|
+
tokenOperationHashPrefix: string;
|
|
946
|
+
}
|
|
947
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
948
|
+
name: string;
|
|
949
|
+
family: CoinFamily;
|
|
950
|
+
explorerUrl: string;
|
|
951
|
+
accountExplorerUrl: string;
|
|
952
|
+
chainId: number;
|
|
953
|
+
nativeCoinOperationHashPrefix: string;
|
|
954
|
+
tokenOperationHashPrefix: string;
|
|
955
|
+
forwarderFactoryAddress: string;
|
|
956
|
+
forwarderImplementationAddress: string;
|
|
957
|
+
walletFactoryAddress: string;
|
|
958
|
+
walletImplementationAddress: string;
|
|
959
|
+
batcherContractAddress: string;
|
|
960
|
+
}
|
|
961
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
962
|
+
name: string;
|
|
963
|
+
family: CoinFamily;
|
|
964
|
+
explorerUrl: string;
|
|
965
|
+
accountExplorerUrl: string;
|
|
966
|
+
chainId: number;
|
|
967
|
+
nativeCoinOperationHashPrefix: string;
|
|
968
|
+
tokenOperationHashPrefix: string;
|
|
969
|
+
forwarderFactoryAddress: string;
|
|
970
|
+
forwarderImplementationAddress: string;
|
|
971
|
+
walletFactoryAddress: string;
|
|
972
|
+
walletImplementationAddress: string;
|
|
973
|
+
batcherContractAddress: string;
|
|
974
|
+
}
|
|
975
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
976
|
+
name: string;
|
|
977
|
+
family: CoinFamily;
|
|
978
|
+
explorerUrl: string;
|
|
979
|
+
accountExplorerUrl: string;
|
|
980
|
+
chainId: number;
|
|
981
|
+
nativeCoinOperationHashPrefix: string;
|
|
982
|
+
tokenOperationHashPrefix: string;
|
|
983
|
+
}
|
|
984
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
985
|
+
name: string;
|
|
986
|
+
family: CoinFamily;
|
|
987
|
+
explorerUrl: string;
|
|
988
|
+
accountExplorerUrl: string;
|
|
989
|
+
chainId: number;
|
|
990
|
+
nativeCoinOperationHashPrefix: string;
|
|
991
|
+
tokenOperationHashPrefix: string;
|
|
992
|
+
forwarderFactoryAddress: string;
|
|
993
|
+
forwarderImplementationAddress: string;
|
|
994
|
+
walletFactoryAddress: string;
|
|
995
|
+
walletImplementationAddress: string;
|
|
996
|
+
}
|
|
997
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
998
|
+
name: string;
|
|
999
|
+
family: CoinFamily;
|
|
1000
|
+
explorerUrl: string;
|
|
1001
|
+
accountExplorerUrl: string;
|
|
1002
|
+
chainId: number;
|
|
1003
|
+
nativeCoinOperationHashPrefix: string;
|
|
1004
|
+
tokenOperationHashPrefix: string;
|
|
1005
|
+
batcherContractAddress: string;
|
|
1006
|
+
forwarderFactoryAddress: string;
|
|
1007
|
+
forwarderImplementationAddress: string;
|
|
1008
|
+
}
|
|
1009
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1010
|
+
name: string;
|
|
1011
|
+
family: CoinFamily;
|
|
1012
|
+
explorerUrl: string;
|
|
1013
|
+
accountExplorerUrl: string;
|
|
1014
|
+
chainId: number;
|
|
1015
|
+
nativeCoinOperationHashPrefix: string;
|
|
1016
|
+
tokenOperationHashPrefix: string;
|
|
1017
|
+
batcherContractAddress: string;
|
|
1018
|
+
forwarderFactoryAddress: string;
|
|
1019
|
+
forwarderImplementationAddress: string;
|
|
1020
|
+
}
|
|
1021
|
+
declare class Oas 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 OasTestnet 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 Coredao 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 CoredaoTestnet 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 ApeChain extends Mainnet implements EthereumNetwork {
|
|
1066
|
+
name: string;
|
|
1067
|
+
family: CoinFamily;
|
|
1068
|
+
explorerUrl: string;
|
|
1069
|
+
accountExplorerUrl: string;
|
|
1070
|
+
chainId: number;
|
|
1071
|
+
nativeCoinOperationHashPrefix: string;
|
|
1072
|
+
}
|
|
1073
|
+
declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1074
|
+
name: string;
|
|
1075
|
+
family: CoinFamily;
|
|
1076
|
+
explorerUrl: string;
|
|
1077
|
+
accountExplorerUrl: string;
|
|
1078
|
+
chainId: number;
|
|
1079
|
+
nativeCoinOperationHashPrefix: string;
|
|
1080
|
+
}
|
|
1081
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1082
|
+
name: string;
|
|
1083
|
+
family: CoinFamily;
|
|
1084
|
+
explorerUrl: string;
|
|
1085
|
+
accountExplorerUrl: string;
|
|
1086
|
+
chainId: number;
|
|
1087
|
+
nativeCoinOperationHashPrefix: string;
|
|
1088
|
+
batcherContractAddress: string;
|
|
1089
|
+
forwarderFactoryAddress: string;
|
|
1090
|
+
forwarderImplementationAddress: string;
|
|
1091
|
+
}
|
|
1092
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1093
|
+
name: string;
|
|
1094
|
+
family: CoinFamily;
|
|
1095
|
+
explorerUrl: string;
|
|
1096
|
+
accountExplorerUrl: string;
|
|
1097
|
+
chainId: number;
|
|
1098
|
+
nativeCoinOperationHashPrefix: string;
|
|
1099
|
+
batcherContractAddress: string;
|
|
1100
|
+
forwarderFactoryAddress: string;
|
|
1101
|
+
forwarderImplementationAddress: string;
|
|
1102
|
+
}
|
|
1103
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1104
|
+
name: string;
|
|
1105
|
+
family: CoinFamily;
|
|
1106
|
+
explorerUrl: string;
|
|
1107
|
+
accountExplorerUrl: string;
|
|
1108
|
+
chainId: number;
|
|
1109
|
+
nativeCoinOperationHashPrefix: string;
|
|
1110
|
+
batcherContractAddress: string;
|
|
1111
|
+
forwarderFactoryAddress: string;
|
|
1112
|
+
forwarderImplementationAddress: string;
|
|
1113
|
+
}
|
|
1114
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1115
|
+
name: string;
|
|
1116
|
+
family: CoinFamily;
|
|
1117
|
+
explorerUrl: string;
|
|
1118
|
+
accountExplorerUrl: string;
|
|
1119
|
+
chainId: number;
|
|
1120
|
+
nativeCoinOperationHashPrefix: string;
|
|
1121
|
+
batcherContractAddress: string;
|
|
1122
|
+
forwarderFactoryAddress: string;
|
|
1123
|
+
forwarderImplementationAddress: string;
|
|
1124
|
+
}
|
|
1125
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1126
|
+
name: string;
|
|
1127
|
+
family: CoinFamily;
|
|
1128
|
+
explorerUrl: string;
|
|
1129
|
+
accountExplorerUrl: string;
|
|
1130
|
+
chainId: number;
|
|
1131
|
+
nativeCoinOperationHashPrefix: string;
|
|
1132
|
+
}
|
|
1133
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1134
|
+
name: string;
|
|
1135
|
+
family: CoinFamily;
|
|
1136
|
+
explorerUrl: string;
|
|
1137
|
+
chainId: number;
|
|
1138
|
+
nativeCoinOperationHashPrefix: string;
|
|
1139
|
+
}
|
|
1140
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1141
|
+
name: string;
|
|
1142
|
+
family: CoinFamily;
|
|
1143
|
+
explorerUrl: string;
|
|
1144
|
+
accountExplorerUrl: string;
|
|
1145
|
+
chainId: number;
|
|
1146
|
+
nativeCoinOperationHashPrefix: string;
|
|
1147
|
+
}
|
|
1148
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1149
|
+
name: string;
|
|
1150
|
+
family: CoinFamily;
|
|
1151
|
+
explorerUrl: string;
|
|
1152
|
+
accountExplorerUrl: string;
|
|
1153
|
+
chainId: number;
|
|
1154
|
+
nativeCoinOperationHashPrefix: string;
|
|
1155
|
+
batcherContractAddress: string;
|
|
1156
|
+
forwarderFactoryAddress: string;
|
|
1157
|
+
forwarderImplementationAddress: string;
|
|
1158
|
+
}
|
|
1159
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1160
|
+
name: string;
|
|
1161
|
+
family: CoinFamily;
|
|
1162
|
+
explorerUrl: string;
|
|
1163
|
+
accountExplorerUrl: string;
|
|
1164
|
+
chainId: number;
|
|
1165
|
+
nativeCoinOperationHashPrefix: string;
|
|
1166
|
+
walletFactoryAddress: string;
|
|
1167
|
+
}
|
|
1168
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1169
|
+
name: string;
|
|
1170
|
+
family: CoinFamily;
|
|
1171
|
+
explorerUrl: string;
|
|
1172
|
+
accountExplorerUrl: string;
|
|
1173
|
+
chainId: number;
|
|
1174
|
+
nativeCoinOperationHashPrefix: string;
|
|
1175
|
+
walletFactoryAddress: string;
|
|
1176
|
+
batcherContractAddress: string;
|
|
1177
|
+
forwarderFactoryAddress: string;
|
|
1178
|
+
forwarderImplementationAddress: string;
|
|
1179
|
+
}
|
|
1180
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1181
|
+
name: string;
|
|
1182
|
+
family: CoinFamily;
|
|
1183
|
+
explorerUrl: string;
|
|
1184
|
+
chainId: number;
|
|
1185
|
+
nativeCoinOperationHashPrefix: string;
|
|
1186
|
+
}
|
|
1187
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1188
|
+
name: string;
|
|
1189
|
+
family: CoinFamily;
|
|
1190
|
+
explorerUrl: string;
|
|
1191
|
+
accountExplorerUrl: string;
|
|
1192
|
+
chainId: number;
|
|
1193
|
+
nativeCoinOperationHashPrefix: string;
|
|
1194
|
+
}
|
|
1195
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1196
|
+
name: string;
|
|
1197
|
+
family: CoinFamily;
|
|
1198
|
+
explorerUrl: string;
|
|
1199
|
+
accountExplorerUrl: string;
|
|
1200
|
+
chainId: number;
|
|
1201
|
+
nativeCoinOperationHashPrefix: string;
|
|
1202
|
+
batcherContractAddress: string;
|
|
1203
|
+
forwarderFactoryAddress: string;
|
|
1204
|
+
forwarderImplementationAddress: string;
|
|
1205
|
+
}
|
|
1206
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1207
|
+
name: string;
|
|
1208
|
+
family: CoinFamily;
|
|
1209
|
+
explorerUrl: string;
|
|
1210
|
+
accountExplorerUrl: string;
|
|
1211
|
+
chainId: number;
|
|
1212
|
+
nativeCoinOperationHashPrefix: string;
|
|
1213
|
+
batcherContractAddress: string;
|
|
1214
|
+
forwarderFactoryAddress: string;
|
|
1215
|
+
forwarderImplementationAddress: string;
|
|
1216
|
+
}
|
|
1217
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1218
|
+
name: string;
|
|
1219
|
+
family: CoinFamily;
|
|
1220
|
+
explorerUrl: string;
|
|
1221
|
+
accountExplorerUrl: string;
|
|
1222
|
+
chainId: number;
|
|
1223
|
+
nativeCoinOperationHashPrefix: string;
|
|
1224
|
+
batcherContractAddress: string;
|
|
1225
|
+
forwarderFactoryAddress: string;
|
|
1226
|
+
forwarderImplementationAddress: string;
|
|
1227
|
+
}
|
|
1228
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1229
|
+
name: string;
|
|
1230
|
+
family: CoinFamily;
|
|
1231
|
+
explorerUrl: string;
|
|
1232
|
+
accountExplorerUrl: string;
|
|
1233
|
+
chainId: number;
|
|
1234
|
+
nativeCoinOperationHashPrefix: string;
|
|
1235
|
+
batcherContractAddress: string;
|
|
1236
|
+
forwarderFactoryAddress: string;
|
|
1237
|
+
forwarderImplementationAddress: string;
|
|
1238
|
+
}
|
|
1239
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1240
|
+
name: string;
|
|
1241
|
+
family: CoinFamily;
|
|
1242
|
+
explorerUrl: string;
|
|
1243
|
+
accountExplorerUrl: string;
|
|
1244
|
+
chainId: number;
|
|
1245
|
+
nativeCoinOperationHashPrefix: string;
|
|
1246
|
+
tokenOperationHashPrefix: string;
|
|
1247
|
+
forwarderFactoryAddress: string;
|
|
1248
|
+
forwarderImplementationAddress: string;
|
|
1249
|
+
walletFactoryAddress: string;
|
|
1250
|
+
walletImplementationAddress: string;
|
|
1251
|
+
}
|
|
1252
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1253
|
+
name: string;
|
|
1254
|
+
family: CoinFamily;
|
|
1255
|
+
explorerUrl: string;
|
|
1256
|
+
accountExplorerUrl: string;
|
|
1257
|
+
chainId: number;
|
|
1258
|
+
nativeCoinOperationHashPrefix: string;
|
|
1259
|
+
tokenOperationHashPrefix: string;
|
|
1260
|
+
forwarderFactoryAddress: string;
|
|
1261
|
+
forwarderImplementationAddress: string;
|
|
1262
|
+
walletFactoryAddress: string;
|
|
1263
|
+
walletImplementationAddress: string;
|
|
1264
|
+
}
|
|
1265
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1266
|
+
name: string;
|
|
1267
|
+
family: CoinFamily;
|
|
1268
|
+
explorerUrl: string;
|
|
1269
|
+
}
|
|
1270
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1271
|
+
name: string;
|
|
1272
|
+
family: CoinFamily;
|
|
1273
|
+
explorerUrl: string;
|
|
1274
|
+
specName: SubstrateSpecNameType;
|
|
1275
|
+
genesisHash: string;
|
|
1276
|
+
specVersion: number;
|
|
1277
|
+
chainName: string;
|
|
1278
|
+
txVersion: number;
|
|
1279
|
+
}
|
|
1280
|
+
declare class Vet extends Mainnet implements AccountNetwork {
|
|
1281
|
+
name: string;
|
|
1282
|
+
family: CoinFamily;
|
|
1283
|
+
explorerUrl: string;
|
|
1284
|
+
accountExplorerUrl: string;
|
|
1285
|
+
}
|
|
1286
|
+
declare class VetTestnet extends Testnet implements AccountNetwork {
|
|
1287
|
+
name: string;
|
|
1288
|
+
family: CoinFamily;
|
|
1289
|
+
explorerUrl: string;
|
|
1290
|
+
accountExplorerUrl: string;
|
|
672
1291
|
}
|
|
673
1292
|
export declare const Networks: {
|
|
674
1293
|
main: {
|
|
675
1294
|
ada: Readonly<Ada>;
|
|
676
1295
|
algorand: Readonly<Algorand>;
|
|
1296
|
+
apechain: Readonly<ApeChain>;
|
|
1297
|
+
apt: Readonly<Apt>;
|
|
1298
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1299
|
+
asi: Readonly<Asi>;
|
|
677
1300
|
atom: Readonly<Atom>;
|
|
678
1301
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1302
|
avalancheP: Readonly<AvalancheP>;
|
|
1303
|
+
baby: Readonly<Baby>;
|
|
1304
|
+
basechain: Readonly<BaseChain>;
|
|
680
1305
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1306
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1307
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1308
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1309
|
+
bera: Readonly<Berachain>;
|
|
684
1310
|
bld: Readonly<Bld>;
|
|
685
1311
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1312
|
casper: Readonly<Casper>;
|
|
687
1313
|
celo: Readonly<Celo>;
|
|
1314
|
+
coredao: Readonly<Coredao>;
|
|
1315
|
+
coreum: Readonly<Coreum>;
|
|
1316
|
+
cronos: Readonly<Cronos>;
|
|
688
1317
|
dash: Readonly<Dash>;
|
|
689
1318
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1319
|
dot: Readonly<Polkadot>;
|
|
@@ -695,73 +1324,133 @@ export declare const Networks: {
|
|
|
695
1324
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1325
|
ethereumW: Readonly<EthereumW>;
|
|
697
1326
|
fiat: Readonly<Fiat>;
|
|
1327
|
+
fetchai: Readonly<FetchAi>;
|
|
1328
|
+
flr: Readonly<Flare>;
|
|
698
1329
|
hash: Readonly<Hash>;
|
|
699
1330
|
hedera: Readonly<Hedera>;
|
|
1331
|
+
icp: Readonly<Icp>;
|
|
1332
|
+
initia: Readonly<Initia>;
|
|
700
1333
|
injective: Readonly<Injective>;
|
|
1334
|
+
islm: Readonly<Islm>;
|
|
1335
|
+
kava: Readonly<Kava>;
|
|
1336
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1337
|
litecoin: Readonly<Litecoin>;
|
|
1338
|
+
mon: Readonly<Monad>;
|
|
1339
|
+
mantra: Readonly<Mantra>;
|
|
702
1340
|
polygon: Readonly<Polygon>;
|
|
1341
|
+
polyx: Readonly<Polymesh>;
|
|
1342
|
+
oas: Readonly<Oas>;
|
|
703
1343
|
ofc: Readonly<Ofc>;
|
|
1344
|
+
optimism: Readonly<Optimism>;
|
|
704
1345
|
osmo: Readonly<Osmo>;
|
|
705
1346
|
rbtc: Readonly<Rbtc>;
|
|
1347
|
+
rune: Readonly<Rune>;
|
|
706
1348
|
stellar: Readonly<Stellar>;
|
|
707
1349
|
sei: Readonly<Sei>;
|
|
1350
|
+
sgb: Readonly<Songbird>;
|
|
708
1351
|
sol: Readonly<Sol>;
|
|
709
1352
|
sui: Readonly<Sui>;
|
|
710
1353
|
near: Readonly<Near>;
|
|
711
1354
|
stx: Readonly<Stx>;
|
|
1355
|
+
stt: Readonly<Somnia>;
|
|
1356
|
+
soneium: Readonly<Soneium>;
|
|
712
1357
|
susd: Readonly<SUSD>;
|
|
1358
|
+
tao: Readonly<Bittensor>;
|
|
713
1359
|
tia: Readonly<Tia>;
|
|
1360
|
+
ton: Readonly<Ton>;
|
|
714
1361
|
trx: Readonly<Trx>;
|
|
1362
|
+
vet: Readonly<Vet>;
|
|
1363
|
+
wemix: Readonly<Wemix>;
|
|
1364
|
+
world: Readonly<World>;
|
|
1365
|
+
xdc: Readonly<Xdc>;
|
|
715
1366
|
xrp: Readonly<Xrp>;
|
|
716
1367
|
xtz: Readonly<Xtz>;
|
|
717
1368
|
zCash: Readonly<ZCash>;
|
|
718
1369
|
zeta: Readonly<Zeta>;
|
|
1370
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1371
|
};
|
|
720
1372
|
test: {
|
|
721
1373
|
ada: Readonly<AdaTestnet>;
|
|
722
1374
|
algorand: Readonly<AlgorandTestnet>;
|
|
1375
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1376
|
+
apt: Readonly<AptTestnet>;
|
|
1377
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1378
|
+
asi: Readonly<AsiTestnet>;
|
|
723
1379
|
atom: Readonly<AtomTestnet>;
|
|
724
1380
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1381
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1382
|
+
baby: Readonly<BabyTestnet>;
|
|
1383
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1384
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1385
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1386
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1387
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1388
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1389
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1390
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1391
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1392
|
bld: Readonly<BldTestnet>;
|
|
731
1393
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1394
|
casper: Readonly<CasperTestnet>;
|
|
1395
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1396
|
celo: Readonly<CeloTestnet>;
|
|
1397
|
+
cronos: Readonly<CronosTestnet>;
|
|
734
1398
|
dash: Readonly<DashTestnet>;
|
|
735
1399
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
736
1400
|
dot: Readonly<PolkadotTestnet>;
|
|
737
1401
|
eCash: Readonly<ECashTestnet>;
|
|
738
1402
|
eos: Readonly<EosTestnet>;
|
|
739
1403
|
fiat: Readonly<FiatTestnet>;
|
|
1404
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1405
|
+
flr: Readonly<FlareTestnet>;
|
|
1406
|
+
mon: Readonly<MonadTestnet>;
|
|
740
1407
|
pyrmont: Readonly<Pyrmont>;
|
|
741
1408
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1409
|
hash: Readonly<HashTestnet>;
|
|
743
1410
|
hedera: Readonly<HederaTestnet>;
|
|
1411
|
+
icp: Readonly<IcpTestnet>;
|
|
1412
|
+
initia: Readonly<InitiaTestnet>;
|
|
744
1413
|
injective: Readonly<InjectiveTestnet>;
|
|
1414
|
+
islm: Readonly<IslmTestnet>;
|
|
1415
|
+
kava: Readonly<KavaTestnet>;
|
|
745
1416
|
kovan: Readonly<Kovan>;
|
|
746
1417
|
goerli: Readonly<Goerli>;
|
|
1418
|
+
holesky: Readonly<Holesky>;
|
|
1419
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1420
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1421
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1422
|
polygon: Readonly<PolygonTestnet>;
|
|
1423
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1424
|
+
oas: Readonly<OasTestnet>;
|
|
749
1425
|
ofc: Readonly<OfcTestnet>;
|
|
1426
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1427
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1428
|
rbtc: Readonly<RbtcTestnet>;
|
|
1429
|
+
rune: Readonly<RuneTestNet>;
|
|
1430
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1431
|
stellar: Readonly<StellarTestnet>;
|
|
753
1432
|
sei: Readonly<SeiTestnet>;
|
|
754
1433
|
sol: Readonly<SolTestnet>;
|
|
755
1434
|
sui: Readonly<SuiTestnet>;
|
|
756
1435
|
near: Readonly<NearTestnet>;
|
|
757
1436
|
stx: Readonly<StxTestnet>;
|
|
1437
|
+
stt: Readonly<SomniaTestnet>;
|
|
1438
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
758
1439
|
susd: Readonly<SUSDTestnet>;
|
|
1440
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1441
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1442
|
tia: Readonly<TiaTestnet>;
|
|
1443
|
+
ton: Readonly<TonTestnet>;
|
|
760
1444
|
trx: Readonly<TrxTestnet>;
|
|
1445
|
+
vet: Readonly<VetTestnet>;
|
|
1446
|
+
wemix: Readonly<WemixTestnet>;
|
|
1447
|
+
world: Readonly<WorldTestnet>;
|
|
1448
|
+
xdc: Readonly<XdcTestnet>;
|
|
761
1449
|
xrp: Readonly<XrpTestnet>;
|
|
762
1450
|
xtz: Readonly<XtzTestnet>;
|
|
763
1451
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1452
|
zeta: Readonly<ZetaTestnet>;
|
|
1453
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1454
|
};
|
|
766
1455
|
};
|
|
767
1456
|
export {};
|