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