@bitgo-beta/statics 15.1.1-beta.91 → 15.1.1-beta.910
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 +2805 -0
- package/dist/src/account.d.ts +499 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +831 -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 +1403 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1457 -50
- package/dist/src/coinFeatures.d.ts +84 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +524 -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 +96 -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 +139 -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 +1395 -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 +465 -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 +1312 -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 +137 -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 +337 -0
- package/dist/src/coins.d.ts +10 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +632 -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 +654 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +882 -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 +144 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +340 -115
- 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,106 @@ 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 Islm extends Mainnet implements AccountNetwork {
|
|
785
|
+
name: string;
|
|
786
|
+
family: CoinFamily;
|
|
787
|
+
explorerUrl: string;
|
|
788
|
+
}
|
|
789
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
790
|
+
name: string;
|
|
791
|
+
family: CoinFamily;
|
|
792
|
+
explorerUrl: string;
|
|
793
|
+
}
|
|
555
794
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
556
795
|
name: string;
|
|
557
796
|
family: CoinFamily;
|
|
@@ -586,9 +825,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
586
825
|
family: CoinFamily;
|
|
587
826
|
explorerUrl: undefined;
|
|
588
827
|
}
|
|
828
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
829
|
+
name: string;
|
|
830
|
+
family: CoinFamily;
|
|
831
|
+
explorerUrl: string;
|
|
832
|
+
}
|
|
833
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
834
|
+
name: string;
|
|
835
|
+
family: CoinFamily;
|
|
836
|
+
explorerUrl: string;
|
|
837
|
+
specName: SubstrateSpecNameType;
|
|
838
|
+
genesisHash: string;
|
|
839
|
+
specVersion: number;
|
|
840
|
+
chainName: string;
|
|
841
|
+
txVersion: number;
|
|
842
|
+
}
|
|
589
843
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
590
844
|
name: string;
|
|
591
845
|
family: CoinFamily;
|
|
846
|
+
accountExplorerUrl: string;
|
|
592
847
|
explorerUrl: string;
|
|
593
848
|
maxFeeLimit: string;
|
|
594
849
|
contractCallFeeLimit: string;
|
|
@@ -596,6 +851,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
596
851
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
597
852
|
name: string;
|
|
598
853
|
family: CoinFamily;
|
|
854
|
+
accountExplorerUrl: string;
|
|
599
855
|
explorerUrl: string;
|
|
600
856
|
maxFeeLimit: string;
|
|
601
857
|
contractCallFeeLimit: string;
|
|
@@ -614,11 +870,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
614
870
|
name: string;
|
|
615
871
|
family: CoinFamily;
|
|
616
872
|
explorerUrl: string;
|
|
873
|
+
accountExplorerUrl: string;
|
|
617
874
|
}
|
|
618
875
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
619
876
|
name: string;
|
|
620
877
|
family: CoinFamily;
|
|
621
878
|
explorerUrl: string;
|
|
879
|
+
accountExplorerUrl: string;
|
|
622
880
|
}
|
|
623
881
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
624
882
|
name: string;
|
|
@@ -657,6 +915,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
657
915
|
walletFactoryAddress: string;
|
|
658
916
|
walletImplementationAddress: string;
|
|
659
917
|
batcherContractAddress: string;
|
|
918
|
+
nativeCoinOperationHashPrefix: string;
|
|
919
|
+
tokenOperationHashPrefix: string;
|
|
660
920
|
}
|
|
661
921
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
662
922
|
name: string;
|
|
@@ -669,22 +929,357 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
669
929
|
walletFactoryAddress: string;
|
|
670
930
|
walletImplementationAddress: string;
|
|
671
931
|
batcherContractAddress: string;
|
|
932
|
+
nativeCoinOperationHashPrefix: string;
|
|
933
|
+
tokenOperationHashPrefix: string;
|
|
934
|
+
}
|
|
935
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
936
|
+
name: string;
|
|
937
|
+
family: CoinFamily;
|
|
938
|
+
explorerUrl: string;
|
|
939
|
+
accountExplorerUrl: string;
|
|
940
|
+
chainId: number;
|
|
941
|
+
nativeCoinOperationHashPrefix: string;
|
|
942
|
+
tokenOperationHashPrefix: string;
|
|
943
|
+
forwarderFactoryAddress: string;
|
|
944
|
+
forwarderImplementationAddress: string;
|
|
945
|
+
walletFactoryAddress: string;
|
|
946
|
+
walletImplementationAddress: string;
|
|
947
|
+
batcherContractAddress: string;
|
|
948
|
+
}
|
|
949
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
950
|
+
name: string;
|
|
951
|
+
family: CoinFamily;
|
|
952
|
+
explorerUrl: string;
|
|
953
|
+
accountExplorerUrl: string;
|
|
954
|
+
chainId: number;
|
|
955
|
+
nativeCoinOperationHashPrefix: string;
|
|
956
|
+
tokenOperationHashPrefix: string;
|
|
957
|
+
forwarderFactoryAddress: string;
|
|
958
|
+
forwarderImplementationAddress: string;
|
|
959
|
+
walletFactoryAddress: string;
|
|
960
|
+
walletImplementationAddress: string;
|
|
961
|
+
batcherContractAddress: string;
|
|
962
|
+
}
|
|
963
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
964
|
+
name: string;
|
|
965
|
+
family: CoinFamily;
|
|
966
|
+
explorerUrl: string;
|
|
967
|
+
accountExplorerUrl: string;
|
|
968
|
+
chainId: number;
|
|
969
|
+
nativeCoinOperationHashPrefix: string;
|
|
970
|
+
tokenOperationHashPrefix: string;
|
|
971
|
+
}
|
|
972
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
973
|
+
name: string;
|
|
974
|
+
family: CoinFamily;
|
|
975
|
+
explorerUrl: string;
|
|
976
|
+
accountExplorerUrl: string;
|
|
977
|
+
chainId: number;
|
|
978
|
+
nativeCoinOperationHashPrefix: string;
|
|
979
|
+
tokenOperationHashPrefix: string;
|
|
980
|
+
forwarderFactoryAddress: string;
|
|
981
|
+
forwarderImplementationAddress: string;
|
|
982
|
+
walletFactoryAddress: string;
|
|
983
|
+
walletImplementationAddress: string;
|
|
984
|
+
}
|
|
985
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
986
|
+
name: string;
|
|
987
|
+
family: CoinFamily;
|
|
988
|
+
explorerUrl: string;
|
|
989
|
+
accountExplorerUrl: string;
|
|
990
|
+
chainId: number;
|
|
991
|
+
nativeCoinOperationHashPrefix: string;
|
|
992
|
+
tokenOperationHashPrefix: string;
|
|
993
|
+
batcherContractAddress: string;
|
|
994
|
+
forwarderFactoryAddress: string;
|
|
995
|
+
forwarderImplementationAddress: string;
|
|
996
|
+
}
|
|
997
|
+
declare class BerachainTestnet extends Testnet 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 Oas extends Mainnet implements EthereumNetwork {
|
|
1010
|
+
name: string;
|
|
1011
|
+
family: CoinFamily;
|
|
1012
|
+
explorerUrl: string;
|
|
1013
|
+
accountExplorerUrl: string;
|
|
1014
|
+
chainId: number;
|
|
1015
|
+
nativeCoinOperationHashPrefix: string;
|
|
1016
|
+
batcherContractAddress: string;
|
|
1017
|
+
forwarderFactoryAddress: string;
|
|
1018
|
+
forwarderImplementationAddress: string;
|
|
1019
|
+
}
|
|
1020
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1021
|
+
name: string;
|
|
1022
|
+
family: CoinFamily;
|
|
1023
|
+
explorerUrl: string;
|
|
1024
|
+
accountExplorerUrl: string;
|
|
1025
|
+
chainId: number;
|
|
1026
|
+
nativeCoinOperationHashPrefix: string;
|
|
1027
|
+
batcherContractAddress: string;
|
|
1028
|
+
forwarderFactoryAddress: string;
|
|
1029
|
+
forwarderImplementationAddress: string;
|
|
1030
|
+
}
|
|
1031
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1032
|
+
name: string;
|
|
1033
|
+
family: CoinFamily;
|
|
1034
|
+
explorerUrl: string;
|
|
1035
|
+
accountExplorerUrl: string;
|
|
1036
|
+
chainId: number;
|
|
1037
|
+
nativeCoinOperationHashPrefix: string;
|
|
1038
|
+
batcherContractAddress: string;
|
|
1039
|
+
forwarderFactoryAddress: string;
|
|
1040
|
+
forwarderImplementationAddress: string;
|
|
1041
|
+
}
|
|
1042
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1043
|
+
name: string;
|
|
1044
|
+
family: CoinFamily;
|
|
1045
|
+
explorerUrl: string;
|
|
1046
|
+
accountExplorerUrl: string;
|
|
1047
|
+
chainId: number;
|
|
1048
|
+
nativeCoinOperationHashPrefix: string;
|
|
1049
|
+
batcherContractAddress: string;
|
|
1050
|
+
forwarderFactoryAddress: string;
|
|
1051
|
+
forwarderImplementationAddress: string;
|
|
1052
|
+
}
|
|
1053
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1054
|
+
name: string;
|
|
1055
|
+
family: CoinFamily;
|
|
1056
|
+
explorerUrl: string;
|
|
1057
|
+
accountExplorerUrl: string;
|
|
1058
|
+
chainId: number;
|
|
1059
|
+
nativeCoinOperationHashPrefix: string;
|
|
1060
|
+
batcherContractAddress: string;
|
|
1061
|
+
forwarderFactoryAddress: string;
|
|
1062
|
+
forwarderImplementationAddress: string;
|
|
1063
|
+
}
|
|
1064
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1065
|
+
name: string;
|
|
1066
|
+
family: CoinFamily;
|
|
1067
|
+
explorerUrl: string;
|
|
1068
|
+
accountExplorerUrl: string;
|
|
1069
|
+
chainId: number;
|
|
1070
|
+
nativeCoinOperationHashPrefix: string;
|
|
1071
|
+
batcherContractAddress: string;
|
|
1072
|
+
forwarderFactoryAddress: string;
|
|
1073
|
+
forwarderImplementationAddress: string;
|
|
1074
|
+
}
|
|
1075
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1076
|
+
name: string;
|
|
1077
|
+
family: CoinFamily;
|
|
1078
|
+
explorerUrl: string;
|
|
1079
|
+
accountExplorerUrl: string;
|
|
1080
|
+
chainId: number;
|
|
1081
|
+
nativeCoinOperationHashPrefix: string;
|
|
1082
|
+
batcherContractAddress: string;
|
|
1083
|
+
forwarderFactoryAddress: string;
|
|
1084
|
+
forwarderImplementationAddress: string;
|
|
1085
|
+
}
|
|
1086
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1087
|
+
name: string;
|
|
1088
|
+
family: CoinFamily;
|
|
1089
|
+
explorerUrl: string;
|
|
1090
|
+
accountExplorerUrl: string;
|
|
1091
|
+
chainId: number;
|
|
1092
|
+
nativeCoinOperationHashPrefix: string;
|
|
1093
|
+
batcherContractAddress: string;
|
|
1094
|
+
forwarderFactoryAddress: string;
|
|
1095
|
+
forwarderImplementationAddress: string;
|
|
1096
|
+
}
|
|
1097
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1098
|
+
name: string;
|
|
1099
|
+
family: CoinFamily;
|
|
1100
|
+
explorerUrl: string;
|
|
1101
|
+
accountExplorerUrl: string;
|
|
1102
|
+
chainId: number;
|
|
1103
|
+
nativeCoinOperationHashPrefix: string;
|
|
1104
|
+
}
|
|
1105
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1106
|
+
name: string;
|
|
1107
|
+
family: CoinFamily;
|
|
1108
|
+
explorerUrl: string;
|
|
1109
|
+
chainId: number;
|
|
1110
|
+
nativeCoinOperationHashPrefix: string;
|
|
1111
|
+
}
|
|
1112
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1113
|
+
name: string;
|
|
1114
|
+
family: CoinFamily;
|
|
1115
|
+
explorerUrl: string;
|
|
1116
|
+
accountExplorerUrl: string;
|
|
1117
|
+
chainId: number;
|
|
1118
|
+
nativeCoinOperationHashPrefix: string;
|
|
1119
|
+
}
|
|
1120
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1121
|
+
name: string;
|
|
1122
|
+
family: CoinFamily;
|
|
1123
|
+
explorerUrl: string;
|
|
1124
|
+
accountExplorerUrl: string;
|
|
1125
|
+
chainId: number;
|
|
1126
|
+
nativeCoinOperationHashPrefix: string;
|
|
1127
|
+
batcherContractAddress: string;
|
|
1128
|
+
forwarderFactoryAddress: string;
|
|
1129
|
+
forwarderImplementationAddress: string;
|
|
1130
|
+
}
|
|
1131
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1132
|
+
name: string;
|
|
1133
|
+
family: CoinFamily;
|
|
1134
|
+
explorerUrl: string;
|
|
1135
|
+
accountExplorerUrl: string;
|
|
1136
|
+
chainId: number;
|
|
1137
|
+
nativeCoinOperationHashPrefix: string;
|
|
1138
|
+
}
|
|
1139
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1140
|
+
name: string;
|
|
1141
|
+
family: CoinFamily;
|
|
1142
|
+
explorerUrl: string;
|
|
1143
|
+
accountExplorerUrl: string;
|
|
1144
|
+
chainId: number;
|
|
1145
|
+
nativeCoinOperationHashPrefix: string;
|
|
1146
|
+
batcherContractAddress: string;
|
|
1147
|
+
forwarderFactoryAddress: string;
|
|
1148
|
+
forwarderImplementationAddress: string;
|
|
1149
|
+
}
|
|
1150
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1151
|
+
name: string;
|
|
1152
|
+
family: CoinFamily;
|
|
1153
|
+
explorerUrl: string;
|
|
1154
|
+
chainId: number;
|
|
1155
|
+
nativeCoinOperationHashPrefix: string;
|
|
1156
|
+
}
|
|
1157
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1158
|
+
name: string;
|
|
1159
|
+
family: CoinFamily;
|
|
1160
|
+
explorerUrl: string;
|
|
1161
|
+
accountExplorerUrl: string;
|
|
1162
|
+
chainId: number;
|
|
1163
|
+
nativeCoinOperationHashPrefix: string;
|
|
1164
|
+
}
|
|
1165
|
+
declare class Flare extends Mainnet 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 FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1177
|
+
name: string;
|
|
1178
|
+
family: CoinFamily;
|
|
1179
|
+
explorerUrl: string;
|
|
1180
|
+
accountExplorerUrl: string;
|
|
1181
|
+
chainId: number;
|
|
1182
|
+
nativeCoinOperationHashPrefix: string;
|
|
1183
|
+
batcherContractAddress: string;
|
|
1184
|
+
forwarderFactoryAddress: string;
|
|
1185
|
+
forwarderImplementationAddress: string;
|
|
1186
|
+
}
|
|
1187
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1188
|
+
name: string;
|
|
1189
|
+
family: CoinFamily;
|
|
1190
|
+
explorerUrl: string;
|
|
1191
|
+
accountExplorerUrl: string;
|
|
1192
|
+
chainId: number;
|
|
1193
|
+
nativeCoinOperationHashPrefix: string;
|
|
1194
|
+
batcherContractAddress: string;
|
|
1195
|
+
forwarderFactoryAddress: string;
|
|
1196
|
+
forwarderImplementationAddress: string;
|
|
1197
|
+
}
|
|
1198
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1199
|
+
name: string;
|
|
1200
|
+
family: CoinFamily;
|
|
1201
|
+
explorerUrl: string;
|
|
1202
|
+
accountExplorerUrl: string;
|
|
1203
|
+
chainId: number;
|
|
1204
|
+
nativeCoinOperationHashPrefix: string;
|
|
1205
|
+
batcherContractAddress: string;
|
|
1206
|
+
forwarderFactoryAddress: string;
|
|
1207
|
+
forwarderImplementationAddress: string;
|
|
1208
|
+
}
|
|
1209
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1210
|
+
name: string;
|
|
1211
|
+
family: CoinFamily;
|
|
1212
|
+
explorerUrl: string;
|
|
1213
|
+
accountExplorerUrl: string;
|
|
1214
|
+
chainId: number;
|
|
1215
|
+
nativeCoinOperationHashPrefix: string;
|
|
1216
|
+
tokenOperationHashPrefix: string;
|
|
1217
|
+
forwarderFactoryAddress: string;
|
|
1218
|
+
forwarderImplementationAddress: string;
|
|
1219
|
+
walletFactoryAddress: string;
|
|
1220
|
+
walletImplementationAddress: string;
|
|
1221
|
+
}
|
|
1222
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1223
|
+
name: string;
|
|
1224
|
+
family: CoinFamily;
|
|
1225
|
+
explorerUrl: string;
|
|
1226
|
+
accountExplorerUrl: string;
|
|
1227
|
+
chainId: number;
|
|
1228
|
+
nativeCoinOperationHashPrefix: string;
|
|
1229
|
+
tokenOperationHashPrefix: string;
|
|
1230
|
+
forwarderFactoryAddress: string;
|
|
1231
|
+
forwarderImplementationAddress: string;
|
|
1232
|
+
walletFactoryAddress: string;
|
|
1233
|
+
walletImplementationAddress: string;
|
|
1234
|
+
}
|
|
1235
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1236
|
+
name: string;
|
|
1237
|
+
family: CoinFamily;
|
|
1238
|
+
explorerUrl: string;
|
|
1239
|
+
}
|
|
1240
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1241
|
+
name: string;
|
|
1242
|
+
family: CoinFamily;
|
|
1243
|
+
explorerUrl: string;
|
|
1244
|
+
specName: SubstrateSpecNameType;
|
|
1245
|
+
genesisHash: string;
|
|
1246
|
+
specVersion: number;
|
|
1247
|
+
chainName: string;
|
|
1248
|
+
txVersion: number;
|
|
1249
|
+
}
|
|
1250
|
+
declare class Vet extends Mainnet implements AccountNetwork {
|
|
1251
|
+
name: string;
|
|
1252
|
+
family: CoinFamily;
|
|
1253
|
+
explorerUrl: string;
|
|
1254
|
+
}
|
|
1255
|
+
declare class VetTestnet extends Testnet implements AccountNetwork {
|
|
1256
|
+
name: string;
|
|
1257
|
+
family: CoinFamily;
|
|
1258
|
+
explorerUrl: string;
|
|
672
1259
|
}
|
|
673
1260
|
export declare const Networks: {
|
|
674
1261
|
main: {
|
|
675
1262
|
ada: Readonly<Ada>;
|
|
676
1263
|
algorand: Readonly<Algorand>;
|
|
1264
|
+
apt: Readonly<Apt>;
|
|
1265
|
+
arbitrum: Readonly<Arbitrum>;
|
|
677
1266
|
atom: Readonly<Atom>;
|
|
678
1267
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1268
|
avalancheP: Readonly<AvalancheP>;
|
|
1269
|
+
baby: Readonly<Baby>;
|
|
1270
|
+
basechain: Readonly<BaseChain>;
|
|
680
1271
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1272
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1273
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1274
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1275
|
+
bera: Readonly<Berachain>;
|
|
684
1276
|
bld: Readonly<Bld>;
|
|
685
1277
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1278
|
casper: Readonly<Casper>;
|
|
687
1279
|
celo: Readonly<Celo>;
|
|
1280
|
+
coredao: Readonly<Coredao>;
|
|
1281
|
+
coreum: Readonly<Coreum>;
|
|
1282
|
+
cronos: Readonly<Cronos>;
|
|
688
1283
|
dash: Readonly<Dash>;
|
|
689
1284
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1285
|
dot: Readonly<Polkadot>;
|
|
@@ -695,73 +1290,131 @@ export declare const Networks: {
|
|
|
695
1290
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1291
|
ethereumW: Readonly<EthereumW>;
|
|
697
1292
|
fiat: Readonly<Fiat>;
|
|
1293
|
+
fetchai: Readonly<FetchAi>;
|
|
1294
|
+
flr: Readonly<Flare>;
|
|
698
1295
|
hash: Readonly<Hash>;
|
|
699
1296
|
hedera: Readonly<Hedera>;
|
|
1297
|
+
icp: Readonly<Icp>;
|
|
1298
|
+
initia: Readonly<Initia>;
|
|
700
1299
|
injective: Readonly<Injective>;
|
|
1300
|
+
islm: Readonly<Islm>;
|
|
1301
|
+
kava: Readonly<Kava>;
|
|
1302
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1303
|
litecoin: Readonly<Litecoin>;
|
|
1304
|
+
mon: Readonly<Monad>;
|
|
1305
|
+
mantra: Readonly<Mantra>;
|
|
702
1306
|
polygon: Readonly<Polygon>;
|
|
1307
|
+
polyx: Readonly<Polymesh>;
|
|
1308
|
+
oas: Readonly<Oas>;
|
|
703
1309
|
ofc: Readonly<Ofc>;
|
|
1310
|
+
optimism: Readonly<Optimism>;
|
|
704
1311
|
osmo: Readonly<Osmo>;
|
|
705
1312
|
rbtc: Readonly<Rbtc>;
|
|
1313
|
+
rune: Readonly<Rune>;
|
|
706
1314
|
stellar: Readonly<Stellar>;
|
|
707
1315
|
sei: Readonly<Sei>;
|
|
1316
|
+
sgb: Readonly<Songbird>;
|
|
708
1317
|
sol: Readonly<Sol>;
|
|
709
1318
|
sui: Readonly<Sui>;
|
|
710
1319
|
near: Readonly<Near>;
|
|
711
1320
|
stx: Readonly<Stx>;
|
|
1321
|
+
stt: Readonly<Somnia>;
|
|
1322
|
+
soneium: Readonly<Soneium>;
|
|
712
1323
|
susd: Readonly<SUSD>;
|
|
1324
|
+
tao: Readonly<Bittensor>;
|
|
713
1325
|
tia: Readonly<Tia>;
|
|
1326
|
+
ton: Readonly<Ton>;
|
|
714
1327
|
trx: Readonly<Trx>;
|
|
1328
|
+
vet: Readonly<Vet>;
|
|
1329
|
+
wemix: Readonly<Wemix>;
|
|
1330
|
+
world: Readonly<World>;
|
|
1331
|
+
xdc: Readonly<Xdc>;
|
|
715
1332
|
xrp: Readonly<Xrp>;
|
|
716
1333
|
xtz: Readonly<Xtz>;
|
|
717
1334
|
zCash: Readonly<ZCash>;
|
|
718
1335
|
zeta: Readonly<Zeta>;
|
|
1336
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1337
|
};
|
|
720
1338
|
test: {
|
|
721
1339
|
ada: Readonly<AdaTestnet>;
|
|
722
1340
|
algorand: Readonly<AlgorandTestnet>;
|
|
1341
|
+
apt: Readonly<AptTestnet>;
|
|
1342
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
723
1343
|
atom: Readonly<AtomTestnet>;
|
|
724
1344
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1345
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1346
|
+
baby: Readonly<BabyTestnet>;
|
|
1347
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1348
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1349
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1350
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1351
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1352
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1353
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1354
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1355
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1356
|
bld: Readonly<BldTestnet>;
|
|
731
1357
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1358
|
casper: Readonly<CasperTestnet>;
|
|
1359
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1360
|
celo: Readonly<CeloTestnet>;
|
|
1361
|
+
cronos: Readonly<CronosTestnet>;
|
|
734
1362
|
dash: Readonly<DashTestnet>;
|
|
735
1363
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
736
1364
|
dot: Readonly<PolkadotTestnet>;
|
|
737
1365
|
eCash: Readonly<ECashTestnet>;
|
|
738
1366
|
eos: Readonly<EosTestnet>;
|
|
739
1367
|
fiat: Readonly<FiatTestnet>;
|
|
1368
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1369
|
+
flr: Readonly<FlareTestnet>;
|
|
1370
|
+
mon: Readonly<MonadTestnet>;
|
|
740
1371
|
pyrmont: Readonly<Pyrmont>;
|
|
741
1372
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1373
|
hash: Readonly<HashTestnet>;
|
|
743
1374
|
hedera: Readonly<HederaTestnet>;
|
|
1375
|
+
icp: Readonly<IcpTestnet>;
|
|
1376
|
+
initia: Readonly<InitiaTestnet>;
|
|
744
1377
|
injective: Readonly<InjectiveTestnet>;
|
|
1378
|
+
islm: Readonly<IslmTestnet>;
|
|
1379
|
+
kava: Readonly<KavaTestnet>;
|
|
745
1380
|
kovan: Readonly<Kovan>;
|
|
746
1381
|
goerli: Readonly<Goerli>;
|
|
1382
|
+
holesky: Readonly<Holesky>;
|
|
1383
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1384
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1385
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1386
|
polygon: Readonly<PolygonTestnet>;
|
|
1387
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1388
|
+
oas: Readonly<OasTestnet>;
|
|
749
1389
|
ofc: Readonly<OfcTestnet>;
|
|
1390
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1391
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1392
|
rbtc: Readonly<RbtcTestnet>;
|
|
1393
|
+
rune: Readonly<RuneTestNet>;
|
|
1394
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1395
|
stellar: Readonly<StellarTestnet>;
|
|
753
1396
|
sei: Readonly<SeiTestnet>;
|
|
754
1397
|
sol: Readonly<SolTestnet>;
|
|
755
1398
|
sui: Readonly<SuiTestnet>;
|
|
756
1399
|
near: Readonly<NearTestnet>;
|
|
757
1400
|
stx: Readonly<StxTestnet>;
|
|
1401
|
+
stt: Readonly<SomniaTestnet>;
|
|
1402
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
758
1403
|
susd: Readonly<SUSDTestnet>;
|
|
1404
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1405
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1406
|
tia: Readonly<TiaTestnet>;
|
|
1407
|
+
ton: Readonly<TonTestnet>;
|
|
760
1408
|
trx: Readonly<TrxTestnet>;
|
|
1409
|
+
vet: Readonly<VetTestnet>;
|
|
1410
|
+
wemix: Readonly<WemixTestnet>;
|
|
1411
|
+
world: Readonly<WorldTestnet>;
|
|
1412
|
+
xdc: Readonly<XdcTestnet>;
|
|
761
1413
|
xrp: Readonly<XrpTestnet>;
|
|
762
1414
|
xtz: Readonly<XtzTestnet>;
|
|
763
1415
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1416
|
zeta: Readonly<ZetaTestnet>;
|
|
1417
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1418
|
};
|
|
766
1419
|
};
|
|
767
1420
|
export {};
|