@bitgo-beta/statics 15.1.1-beta.111 → 15.1.1-beta.1111
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/CHANGELOG.md +3037 -0
- package/dist/src/account.d.ts +769 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1252 -127
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +7 -3
- package/dist/src/allCoinsAndTokens.d.ts +2 -0
- package/dist/src/allCoinsAndTokens.d.ts.map +1 -0
- package/dist/src/allCoinsAndTokens.js +673 -0
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +8 -3
- package/dist/src/base.d.ts +1662 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1727 -50
- package/dist/src/coinFeatures.d.ts +94 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +593 -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 +100 -0
- package/dist/src/coins/botOfcTokens.d.ts +2 -0
- package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
- package/dist/src/coins/botOfcTokens.js +5 -0
- package/dist/src/coins/botTokens.d.ts +2 -0
- package/dist/src/coins/botTokens.d.ts.map +1 -0
- package/dist/src/coins/botTokens.js +5 -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 +160 -0
- package/dist/src/coins/cosmosTokens.d.ts +2 -0
- package/dist/src/coins/cosmosTokens.d.ts.map +1 -0
- package/dist/src/coins/cosmosTokens.js +12 -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 +1516 -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 +14 -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 +622 -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 +1416 -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 +148 -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 +365 -0
- package/dist/src/coins/vetTokens.d.ts +2 -0
- package/dist/src/coins/vetTokens.d.ts.map +1 -0
- package/dist/src/coins/vetTokens.js +11 -0
- package/dist/src/coins.d.ts +10 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +286 -1570
- 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 +23 -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 +10 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +117 -17
- package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
- package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
- package/dist/src/networkFeatureMapForTokens.js +30 -0
- package/dist/src/networks.d.ts +1010 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1302 -42
- package/dist/src/ofc.d.ts +495 -3
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +1201 -28
- package/dist/src/tokenConfig.d.ts +201 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +764 -240
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +83 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/src/networks.d.ts
CHANGED
|
@@ -11,6 +11,25 @@ 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;
|
|
23
|
+
/**
|
|
24
|
+
* The public key of the middleware service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
25
|
+
* between the user's extended private key and the middleware service.
|
|
26
|
+
*/
|
|
27
|
+
middlewarePubKey: string;
|
|
28
|
+
/**
|
|
29
|
+
* The public key of the TAT service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
30
|
+
* between the user's extended private key and the TAT service.
|
|
31
|
+
*/
|
|
32
|
+
tatPubKey: string;
|
|
14
33
|
}
|
|
15
34
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
35
|
utxolibName: string;
|
|
@@ -40,15 +59,25 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
59
|
readonly minDelegationFee: string;
|
|
41
60
|
readonly avaxAssetID: string;
|
|
42
61
|
readonly txFee: string;
|
|
62
|
+
readonly maxImportFee: string;
|
|
43
63
|
}
|
|
44
64
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
65
|
readonly accountExplorerUrl?: string;
|
|
46
66
|
readonly blockExplorerUrl?: string;
|
|
47
67
|
}
|
|
68
|
+
export interface CosmosNetwork extends AccountNetwork {
|
|
69
|
+
readonly addressPrefix: string;
|
|
70
|
+
readonly validatorPrefix: string;
|
|
71
|
+
readonly denom: string;
|
|
72
|
+
readonly gasAmount: string;
|
|
73
|
+
readonly gasLimit: number;
|
|
74
|
+
readonly validDenoms: string[];
|
|
75
|
+
}
|
|
48
76
|
/**
|
|
49
77
|
* Specification name type of the chain. Used in setting up the registry
|
|
50
78
|
*/
|
|
51
|
-
export
|
|
79
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
80
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet' | 'polymesh_mainnet';
|
|
52
81
|
export interface DotNetwork extends AccountNetwork {
|
|
53
82
|
readonly specName: PolkadotSpecNameType;
|
|
54
83
|
readonly genesisHash: string;
|
|
@@ -61,6 +90,10 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
90
|
readonly batcherContractAddress?: string;
|
|
62
91
|
readonly forwarderFactoryAddress?: string;
|
|
63
92
|
readonly forwarderImplementationAddress?: string;
|
|
93
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
94
|
+
readonly tokenOperationHashPrefix?: string;
|
|
95
|
+
readonly walletV4ForwarderFactoryAddress?: string;
|
|
96
|
+
readonly walletV4ForwarderImplementationAddress?: string;
|
|
64
97
|
}
|
|
65
98
|
export interface TronNetwork extends AccountNetwork {
|
|
66
99
|
maxFeeLimit: string;
|
|
@@ -110,6 +143,60 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
143
|
poolDeposit: number;
|
|
111
144
|
stakeKeyDeposit: number;
|
|
112
145
|
}
|
|
146
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
147
|
+
name: string;
|
|
148
|
+
family: CoinFamily;
|
|
149
|
+
explorerUrl: string;
|
|
150
|
+
accountExplorerUrl: string;
|
|
151
|
+
blockExplorerUrl: string;
|
|
152
|
+
}
|
|
153
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
154
|
+
name: string;
|
|
155
|
+
family: CoinFamily;
|
|
156
|
+
explorerUrl: string;
|
|
157
|
+
accountExplorerUrl: string;
|
|
158
|
+
blockExplorerUrl: string;
|
|
159
|
+
}
|
|
160
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
161
|
+
name: string;
|
|
162
|
+
family: CoinFamily;
|
|
163
|
+
explorerUrl: string;
|
|
164
|
+
accountExplorerUrl: string;
|
|
165
|
+
}
|
|
166
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
167
|
+
name: string;
|
|
168
|
+
family: CoinFamily;
|
|
169
|
+
explorerUrl: string;
|
|
170
|
+
accountExplorerUrl: string;
|
|
171
|
+
}
|
|
172
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
173
|
+
name: string;
|
|
174
|
+
family: CoinFamily;
|
|
175
|
+
explorerUrl: string;
|
|
176
|
+
accountExplorerUrl: string;
|
|
177
|
+
chainId: number;
|
|
178
|
+
nativeCoinOperationHashPrefix: string;
|
|
179
|
+
tokenOperationHashPrefix: string;
|
|
180
|
+
forwarderFactoryAddress: string;
|
|
181
|
+
forwarderImplementationAddress: string;
|
|
182
|
+
walletFactoryAddress: string;
|
|
183
|
+
walletImplementationAddress: string;
|
|
184
|
+
batcherContractAddress: string;
|
|
185
|
+
}
|
|
186
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
187
|
+
name: string;
|
|
188
|
+
family: CoinFamily;
|
|
189
|
+
explorerUrl: string;
|
|
190
|
+
accountExplorerUrl: string;
|
|
191
|
+
chainId: number;
|
|
192
|
+
nativeCoinOperationHashPrefix: string;
|
|
193
|
+
tokenOperationHashPrefix: string;
|
|
194
|
+
forwarderFactoryAddress: string;
|
|
195
|
+
forwarderImplementationAddress: string;
|
|
196
|
+
walletFactoryAddress: string;
|
|
197
|
+
walletImplementationAddress: string;
|
|
198
|
+
batcherContractAddress: string;
|
|
199
|
+
}
|
|
113
200
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
201
|
name: string;
|
|
115
202
|
family: CoinFamily;
|
|
@@ -137,6 +224,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
224
|
alias: string;
|
|
138
225
|
vm: string;
|
|
139
226
|
txFee: string;
|
|
227
|
+
maxImportFee: string;
|
|
140
228
|
createSubnetTx: string;
|
|
141
229
|
createChainTx: string;
|
|
142
230
|
creationTxFee: string;
|
|
@@ -162,6 +250,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
250
|
hrp: string;
|
|
163
251
|
vm: string;
|
|
164
252
|
txFee: string;
|
|
253
|
+
maxImportFee: string;
|
|
165
254
|
createSubnetTx: string;
|
|
166
255
|
createChainTx: string;
|
|
167
256
|
creationTxFee: string;
|
|
@@ -180,6 +269,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
269
|
explorerUrl: string;
|
|
181
270
|
accountExplorerUrl: string;
|
|
182
271
|
chainId: number;
|
|
272
|
+
nativeCoinOperationHashPrefix: string;
|
|
273
|
+
tokenOperationHashPrefix: string;
|
|
274
|
+
batcherContractAddress: string;
|
|
183
275
|
}
|
|
184
276
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
277
|
name: string;
|
|
@@ -187,6 +279,27 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
279
|
explorerUrl: string;
|
|
188
280
|
accountExplorerUrl: string;
|
|
189
281
|
chainId: number;
|
|
282
|
+
nativeCoinOperationHashPrefix: string;
|
|
283
|
+
tokenOperationHashPrefix: string;
|
|
284
|
+
batcherContractAddress: string;
|
|
285
|
+
}
|
|
286
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
287
|
+
name: string;
|
|
288
|
+
family: CoinFamily;
|
|
289
|
+
utxolibName: string;
|
|
290
|
+
explorerUrl: string;
|
|
291
|
+
lightningServicePubKey: string;
|
|
292
|
+
middlewarePubKey: string;
|
|
293
|
+
tatPubKey: string;
|
|
294
|
+
}
|
|
295
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
296
|
+
name: string;
|
|
297
|
+
family: CoinFamily;
|
|
298
|
+
utxolibName: string;
|
|
299
|
+
explorerUrl: string;
|
|
300
|
+
lightningServicePubKey: string;
|
|
301
|
+
middlewarePubKey: string;
|
|
302
|
+
tatPubKey: string;
|
|
190
303
|
}
|
|
191
304
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
305
|
name: string;
|
|
@@ -199,6 +312,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
199
312
|
family: CoinFamily;
|
|
200
313
|
utxolibName: string;
|
|
201
314
|
explorerUrl: string;
|
|
315
|
+
paygoAddressAttestationPubkey: string;
|
|
316
|
+
}
|
|
317
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
318
|
+
name: string;
|
|
319
|
+
family: CoinFamily;
|
|
320
|
+
utxolibName: string;
|
|
321
|
+
explorerUrl: string;
|
|
322
|
+
}
|
|
323
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
324
|
+
name: string;
|
|
325
|
+
family: CoinFamily;
|
|
326
|
+
utxolibName: string;
|
|
327
|
+
explorerUrl: string;
|
|
328
|
+
}
|
|
329
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
330
|
+
name: string;
|
|
331
|
+
family: CoinFamily;
|
|
332
|
+
utxolibName: string;
|
|
333
|
+
explorerUrl: string;
|
|
202
334
|
}
|
|
203
335
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
336
|
name: string;
|
|
@@ -298,6 +430,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
298
430
|
explorerUrl: string;
|
|
299
431
|
accountExplorerUrl: string;
|
|
300
432
|
chainId: number;
|
|
433
|
+
nativeCoinOperationHashPrefix: string;
|
|
434
|
+
tokenOperationHashPrefix: string;
|
|
301
435
|
}
|
|
302
436
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
303
437
|
name: string;
|
|
@@ -305,6 +439,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
305
439
|
explorerUrl: string;
|
|
306
440
|
accountExplorerUrl: string;
|
|
307
441
|
chainId: number;
|
|
442
|
+
nativeCoinOperationHashPrefix: string;
|
|
443
|
+
tokenOperationHashPrefix: string;
|
|
308
444
|
}
|
|
309
445
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
310
446
|
name: string;
|
|
@@ -328,6 +464,10 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
328
464
|
batcherContractAddress: string;
|
|
329
465
|
forwarderFactoryAddress: string;
|
|
330
466
|
forwarderImplementationAddress: string;
|
|
467
|
+
nativeCoinOperationHashPrefix: string;
|
|
468
|
+
tokenOperationHashPrefix: string;
|
|
469
|
+
walletV4ForwarderFactoryAddress: string;
|
|
470
|
+
walletV4ForwarderImplementationAddress: string;
|
|
331
471
|
}
|
|
332
472
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
333
473
|
name: string;
|
|
@@ -344,6 +484,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
344
484
|
batcherContractAddress: string;
|
|
345
485
|
forwarderFactoryAddress: string;
|
|
346
486
|
forwarderImplementationAddress: string;
|
|
487
|
+
nativeCoinOperationHashPrefix: string;
|
|
488
|
+
tokenOperationHashPrefix: string;
|
|
347
489
|
}
|
|
348
490
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
349
491
|
name: string;
|
|
@@ -360,6 +502,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
360
502
|
batcherContractAddress: string;
|
|
361
503
|
forwarderFactoryAddress: string;
|
|
362
504
|
forwarderImplementationAddress: string;
|
|
505
|
+
nativeCoinOperationHashPrefix: string;
|
|
506
|
+
tokenOperationHashPrefix: string;
|
|
363
507
|
}
|
|
364
508
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
365
509
|
name: string;
|
|
@@ -371,6 +515,38 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
371
515
|
batcherContractAddress: string;
|
|
372
516
|
forwarderFactoryAddress: string;
|
|
373
517
|
forwarderImplementationAddress: string;
|
|
518
|
+
nativeCoinOperationHashPrefix: string;
|
|
519
|
+
tokenOperationHashPrefix: string;
|
|
520
|
+
}
|
|
521
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
522
|
+
name: string;
|
|
523
|
+
family: CoinFamily;
|
|
524
|
+
explorerUrl: string;
|
|
525
|
+
accountExplorerUrl: string;
|
|
526
|
+
blockExplorerUrl: string;
|
|
527
|
+
chainId: number;
|
|
528
|
+
batcherContractAddress: string;
|
|
529
|
+
forwarderFactoryAddress: string;
|
|
530
|
+
forwarderImplementationAddress: string;
|
|
531
|
+
nativeCoinOperationHashPrefix: string;
|
|
532
|
+
tokenOperationHashPrefix: string;
|
|
533
|
+
walletV4ForwarderFactoryAddress: string;
|
|
534
|
+
walletV4ForwarderImplementationAddress: string;
|
|
535
|
+
}
|
|
536
|
+
declare class Hoodi extends Testnet implements EthereumNetwork {
|
|
537
|
+
name: string;
|
|
538
|
+
family: CoinFamily;
|
|
539
|
+
explorerUrl: string;
|
|
540
|
+
accountExplorerUrl: string;
|
|
541
|
+
blockExplorerUrl: string;
|
|
542
|
+
chainId: number;
|
|
543
|
+
batcherContractAddress: string;
|
|
544
|
+
forwarderFactoryAddress: string;
|
|
545
|
+
forwarderImplementationAddress: string;
|
|
546
|
+
nativeCoinOperationHashPrefix: string;
|
|
547
|
+
tokenOperationHashPrefix: string;
|
|
548
|
+
walletV4ForwarderFactoryAddress: string;
|
|
549
|
+
walletV4ForwarderImplementationAddress: string;
|
|
374
550
|
}
|
|
375
551
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
552
|
name: string;
|
|
@@ -378,6 +554,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
554
|
explorerUrl: string;
|
|
379
555
|
accountExplorerUrl: string;
|
|
380
556
|
chainId: number;
|
|
557
|
+
nativeCoinOperationHashPrefix: string;
|
|
558
|
+
tokenOperationHashPrefix: string;
|
|
381
559
|
}
|
|
382
560
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
561
|
name: string;
|
|
@@ -385,6 +563,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
563
|
explorerUrl: string;
|
|
386
564
|
accountExplorerUrl: string;
|
|
387
565
|
chainId: number;
|
|
566
|
+
nativeCoinOperationHashPrefix: string;
|
|
567
|
+
tokenOperationHashPrefix: string;
|
|
388
568
|
}
|
|
389
569
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
570
|
name: string;
|
|
@@ -434,6 +614,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
614
|
explorerUrl: string;
|
|
435
615
|
accountExplorerUrl: string;
|
|
436
616
|
chainId: number;
|
|
617
|
+
nativeCoinOperationHashPrefix: string;
|
|
618
|
+
tokenOperationHashPrefix: string;
|
|
437
619
|
}
|
|
438
620
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
621
|
name: string;
|
|
@@ -441,6 +623,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
623
|
explorerUrl: string;
|
|
442
624
|
accountExplorerUrl: string;
|
|
443
625
|
chainId: number;
|
|
626
|
+
nativeCoinOperationHashPrefix: string;
|
|
627
|
+
tokenOperationHashPrefix: string;
|
|
444
628
|
}
|
|
445
629
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
630
|
name: string;
|
|
@@ -552,6 +736,116 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
552
736
|
family: CoinFamily;
|
|
553
737
|
explorerUrl: string;
|
|
554
738
|
}
|
|
739
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
740
|
+
name: string;
|
|
741
|
+
family: CoinFamily;
|
|
742
|
+
explorerUrl: string;
|
|
743
|
+
}
|
|
744
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
745
|
+
name: string;
|
|
746
|
+
family: CoinFamily;
|
|
747
|
+
explorerUrl: string;
|
|
748
|
+
}
|
|
749
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
750
|
+
name: string;
|
|
751
|
+
family: CoinFamily;
|
|
752
|
+
explorerUrl: string;
|
|
753
|
+
}
|
|
754
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
755
|
+
name: string;
|
|
756
|
+
family: CoinFamily;
|
|
757
|
+
explorerUrl: string;
|
|
758
|
+
}
|
|
759
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
760
|
+
name: string;
|
|
761
|
+
family: CoinFamily;
|
|
762
|
+
explorerUrl: string;
|
|
763
|
+
}
|
|
764
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
765
|
+
name: string;
|
|
766
|
+
family: CoinFamily;
|
|
767
|
+
explorerUrl: string;
|
|
768
|
+
}
|
|
769
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
770
|
+
name: string;
|
|
771
|
+
family: CoinFamily;
|
|
772
|
+
explorerUrl: string;
|
|
773
|
+
}
|
|
774
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
775
|
+
name: string;
|
|
776
|
+
family: CoinFamily;
|
|
777
|
+
explorerUrl: string;
|
|
778
|
+
}
|
|
779
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
780
|
+
name: string;
|
|
781
|
+
family: CoinFamily;
|
|
782
|
+
explorerUrl: string;
|
|
783
|
+
}
|
|
784
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
785
|
+
name: string;
|
|
786
|
+
family: CoinFamily;
|
|
787
|
+
explorerUrl: string;
|
|
788
|
+
}
|
|
789
|
+
declare class Mantra extends Mainnet implements AccountNetwork {
|
|
790
|
+
name: string;
|
|
791
|
+
family: CoinFamily;
|
|
792
|
+
explorerUrl: string;
|
|
793
|
+
}
|
|
794
|
+
declare class MantraTestnet extends Testnet implements AccountNetwork {
|
|
795
|
+
name: string;
|
|
796
|
+
family: CoinFamily;
|
|
797
|
+
explorerUrl: string;
|
|
798
|
+
}
|
|
799
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
800
|
+
name: string;
|
|
801
|
+
family: CoinFamily;
|
|
802
|
+
explorerUrl: string;
|
|
803
|
+
}
|
|
804
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
805
|
+
name: string;
|
|
806
|
+
family: CoinFamily;
|
|
807
|
+
explorerUrl: string;
|
|
808
|
+
}
|
|
809
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
810
|
+
name: string;
|
|
811
|
+
family: CoinFamily;
|
|
812
|
+
explorerUrl: string;
|
|
813
|
+
}
|
|
814
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
815
|
+
name: string;
|
|
816
|
+
family: CoinFamily;
|
|
817
|
+
explorerUrl: string;
|
|
818
|
+
}
|
|
819
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
820
|
+
name: string;
|
|
821
|
+
family: CoinFamily;
|
|
822
|
+
explorerUrl: string;
|
|
823
|
+
}
|
|
824
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
825
|
+
name: string;
|
|
826
|
+
family: CoinFamily;
|
|
827
|
+
explorerUrl: string;
|
|
828
|
+
}
|
|
829
|
+
declare class Asi extends Mainnet implements AccountNetwork {
|
|
830
|
+
name: string;
|
|
831
|
+
family: CoinFamily;
|
|
832
|
+
explorerUrl: string;
|
|
833
|
+
}
|
|
834
|
+
declare class AsiTestnet extends Testnet implements AccountNetwork {
|
|
835
|
+
name: string;
|
|
836
|
+
family: CoinFamily;
|
|
837
|
+
explorerUrl: string;
|
|
838
|
+
}
|
|
839
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
840
|
+
name: string;
|
|
841
|
+
family: CoinFamily;
|
|
842
|
+
explorerUrl: string;
|
|
843
|
+
}
|
|
844
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
845
|
+
name: string;
|
|
846
|
+
family: CoinFamily;
|
|
847
|
+
explorerUrl: string;
|
|
848
|
+
}
|
|
555
849
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
556
850
|
name: string;
|
|
557
851
|
family: CoinFamily;
|
|
@@ -586,9 +880,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
586
880
|
family: CoinFamily;
|
|
587
881
|
explorerUrl: undefined;
|
|
588
882
|
}
|
|
883
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
884
|
+
name: string;
|
|
885
|
+
family: CoinFamily;
|
|
886
|
+
explorerUrl: string;
|
|
887
|
+
}
|
|
888
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
889
|
+
name: string;
|
|
890
|
+
family: CoinFamily;
|
|
891
|
+
explorerUrl: string;
|
|
892
|
+
specName: SubstrateSpecNameType;
|
|
893
|
+
genesisHash: string;
|
|
894
|
+
specVersion: number;
|
|
895
|
+
chainName: string;
|
|
896
|
+
txVersion: number;
|
|
897
|
+
}
|
|
589
898
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
590
899
|
name: string;
|
|
591
900
|
family: CoinFamily;
|
|
901
|
+
accountExplorerUrl: string;
|
|
592
902
|
explorerUrl: string;
|
|
593
903
|
maxFeeLimit: string;
|
|
594
904
|
contractCallFeeLimit: string;
|
|
@@ -596,6 +906,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
596
906
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
597
907
|
name: string;
|
|
598
908
|
family: CoinFamily;
|
|
909
|
+
accountExplorerUrl: string;
|
|
599
910
|
explorerUrl: string;
|
|
600
911
|
maxFeeLimit: string;
|
|
601
912
|
contractCallFeeLimit: string;
|
|
@@ -614,11 +925,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
614
925
|
name: string;
|
|
615
926
|
family: CoinFamily;
|
|
616
927
|
explorerUrl: string;
|
|
928
|
+
accountExplorerUrl: string;
|
|
617
929
|
}
|
|
618
930
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
619
931
|
name: string;
|
|
620
932
|
family: CoinFamily;
|
|
621
933
|
explorerUrl: string;
|
|
934
|
+
accountExplorerUrl: string;
|
|
622
935
|
}
|
|
623
936
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
624
937
|
name: string;
|
|
@@ -657,6 +970,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
657
970
|
walletFactoryAddress: string;
|
|
658
971
|
walletImplementationAddress: string;
|
|
659
972
|
batcherContractAddress: string;
|
|
973
|
+
nativeCoinOperationHashPrefix: string;
|
|
974
|
+
tokenOperationHashPrefix: string;
|
|
660
975
|
}
|
|
661
976
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
662
977
|
name: string;
|
|
@@ -669,22 +984,632 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
669
984
|
walletFactoryAddress: string;
|
|
670
985
|
walletImplementationAddress: string;
|
|
671
986
|
batcherContractAddress: string;
|
|
987
|
+
nativeCoinOperationHashPrefix: string;
|
|
988
|
+
tokenOperationHashPrefix: string;
|
|
989
|
+
}
|
|
990
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
991
|
+
name: string;
|
|
992
|
+
family: CoinFamily;
|
|
993
|
+
explorerUrl: string;
|
|
994
|
+
accountExplorerUrl: string;
|
|
995
|
+
chainId: number;
|
|
996
|
+
nativeCoinOperationHashPrefix: string;
|
|
997
|
+
tokenOperationHashPrefix: string;
|
|
998
|
+
forwarderFactoryAddress: string;
|
|
999
|
+
forwarderImplementationAddress: string;
|
|
1000
|
+
walletFactoryAddress: string;
|
|
1001
|
+
walletImplementationAddress: string;
|
|
1002
|
+
batcherContractAddress: string;
|
|
1003
|
+
}
|
|
1004
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
1005
|
+
name: string;
|
|
1006
|
+
family: CoinFamily;
|
|
1007
|
+
explorerUrl: string;
|
|
1008
|
+
accountExplorerUrl: string;
|
|
1009
|
+
chainId: number;
|
|
1010
|
+
nativeCoinOperationHashPrefix: string;
|
|
1011
|
+
tokenOperationHashPrefix: string;
|
|
1012
|
+
forwarderFactoryAddress: string;
|
|
1013
|
+
forwarderImplementationAddress: string;
|
|
1014
|
+
walletFactoryAddress: string;
|
|
1015
|
+
walletImplementationAddress: string;
|
|
1016
|
+
batcherContractAddress: string;
|
|
1017
|
+
}
|
|
1018
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
1019
|
+
name: string;
|
|
1020
|
+
family: CoinFamily;
|
|
1021
|
+
explorerUrl: string;
|
|
1022
|
+
accountExplorerUrl: string;
|
|
1023
|
+
chainId: number;
|
|
1024
|
+
nativeCoinOperationHashPrefix: string;
|
|
1025
|
+
tokenOperationHashPrefix: string;
|
|
1026
|
+
}
|
|
1027
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
1028
|
+
name: string;
|
|
1029
|
+
family: CoinFamily;
|
|
1030
|
+
explorerUrl: string;
|
|
1031
|
+
accountExplorerUrl: string;
|
|
1032
|
+
chainId: number;
|
|
1033
|
+
nativeCoinOperationHashPrefix: string;
|
|
1034
|
+
tokenOperationHashPrefix: string;
|
|
1035
|
+
forwarderFactoryAddress: string;
|
|
1036
|
+
forwarderImplementationAddress: string;
|
|
1037
|
+
walletFactoryAddress: string;
|
|
1038
|
+
walletImplementationAddress: string;
|
|
1039
|
+
}
|
|
1040
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
1041
|
+
name: string;
|
|
1042
|
+
family: CoinFamily;
|
|
1043
|
+
explorerUrl: string;
|
|
1044
|
+
accountExplorerUrl: string;
|
|
1045
|
+
chainId: number;
|
|
1046
|
+
nativeCoinOperationHashPrefix: string;
|
|
1047
|
+
tokenOperationHashPrefix: string;
|
|
1048
|
+
batcherContractAddress: string;
|
|
1049
|
+
forwarderFactoryAddress: string;
|
|
1050
|
+
forwarderImplementationAddress: string;
|
|
1051
|
+
}
|
|
1052
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1053
|
+
name: string;
|
|
1054
|
+
family: CoinFamily;
|
|
1055
|
+
explorerUrl: string;
|
|
1056
|
+
accountExplorerUrl: string;
|
|
1057
|
+
chainId: number;
|
|
1058
|
+
nativeCoinOperationHashPrefix: string;
|
|
1059
|
+
tokenOperationHashPrefix: string;
|
|
1060
|
+
batcherContractAddress: string;
|
|
1061
|
+
forwarderFactoryAddress: string;
|
|
1062
|
+
forwarderImplementationAddress: string;
|
|
1063
|
+
}
|
|
1064
|
+
declare class Oas extends Mainnet 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 OasTestnet extends Testnet 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 Coredao extends Mainnet 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 CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1098
|
+
name: string;
|
|
1099
|
+
family: CoinFamily;
|
|
1100
|
+
explorerUrl: string;
|
|
1101
|
+
accountExplorerUrl: string;
|
|
1102
|
+
chainId: number;
|
|
1103
|
+
nativeCoinOperationHashPrefix: string;
|
|
1104
|
+
batcherContractAddress: string;
|
|
1105
|
+
forwarderFactoryAddress: string;
|
|
1106
|
+
forwarderImplementationAddress: string;
|
|
1107
|
+
}
|
|
1108
|
+
declare class IP extends Mainnet implements EthereumNetwork {
|
|
1109
|
+
name: string;
|
|
1110
|
+
family: CoinFamily;
|
|
1111
|
+
explorerUrl: string;
|
|
1112
|
+
accountExplorerUrl: string;
|
|
1113
|
+
chainId: number;
|
|
1114
|
+
nativeCoinOperationHashPrefix: string;
|
|
1115
|
+
}
|
|
1116
|
+
declare class IPTestnet extends Testnet implements EthereumNetwork {
|
|
1117
|
+
name: string;
|
|
1118
|
+
family: CoinFamily;
|
|
1119
|
+
explorerUrl: string;
|
|
1120
|
+
accountExplorerUrl: string;
|
|
1121
|
+
chainId: number;
|
|
1122
|
+
nativeCoinOperationHashPrefix: string;
|
|
1123
|
+
}
|
|
1124
|
+
declare class ApeChain extends Mainnet implements EthereumNetwork {
|
|
1125
|
+
name: string;
|
|
1126
|
+
family: CoinFamily;
|
|
1127
|
+
explorerUrl: string;
|
|
1128
|
+
accountExplorerUrl: string;
|
|
1129
|
+
chainId: number;
|
|
1130
|
+
nativeCoinOperationHashPrefix: string;
|
|
1131
|
+
}
|
|
1132
|
+
declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1133
|
+
name: string;
|
|
1134
|
+
family: CoinFamily;
|
|
1135
|
+
explorerUrl: string;
|
|
1136
|
+
accountExplorerUrl: string;
|
|
1137
|
+
chainId: number;
|
|
1138
|
+
nativeCoinOperationHashPrefix: string;
|
|
1139
|
+
forwarderFactoryAddress: string;
|
|
1140
|
+
forwarderImplementationAddress: string;
|
|
1141
|
+
walletFactoryAddress: string;
|
|
1142
|
+
walletImplementationAddress: string;
|
|
1143
|
+
batcherContractAddress: string;
|
|
1144
|
+
}
|
|
1145
|
+
declare class Pharos extends Mainnet implements EthereumNetwork {
|
|
1146
|
+
name: string;
|
|
1147
|
+
family: CoinFamily;
|
|
1148
|
+
explorerUrl: string;
|
|
1149
|
+
accountExplorerUrl: string;
|
|
1150
|
+
chainId: number;
|
|
1151
|
+
nativeCoinOperationHashPrefix: string;
|
|
1152
|
+
}
|
|
1153
|
+
declare class PharosTestnet extends Testnet implements EthereumNetwork {
|
|
1154
|
+
name: string;
|
|
1155
|
+
family: CoinFamily;
|
|
1156
|
+
explorerUrl: string;
|
|
1157
|
+
accountExplorerUrl: string;
|
|
1158
|
+
chainId: number;
|
|
1159
|
+
nativeCoinOperationHashPrefix: string;
|
|
1160
|
+
}
|
|
1161
|
+
declare class Creditcoin extends Mainnet implements EthereumNetwork {
|
|
1162
|
+
name: string;
|
|
1163
|
+
family: CoinFamily;
|
|
1164
|
+
explorerUrl: string;
|
|
1165
|
+
accountExplorerUrl: string;
|
|
1166
|
+
chainId: number;
|
|
1167
|
+
nativeCoinOperationHashPrefix: string;
|
|
1168
|
+
}
|
|
1169
|
+
declare class Plasma extends Mainnet implements EthereumNetwork {
|
|
1170
|
+
name: string;
|
|
1171
|
+
family: CoinFamily;
|
|
1172
|
+
explorerUrl: string;
|
|
1173
|
+
accountExplorerUrl: string;
|
|
1174
|
+
chainId: number;
|
|
1175
|
+
nativeCoinOperationHashPrefix: string;
|
|
1176
|
+
}
|
|
1177
|
+
declare class PlasmaTestnet extends Testnet implements EthereumNetwork {
|
|
1178
|
+
name: string;
|
|
1179
|
+
family: CoinFamily;
|
|
1180
|
+
explorerUrl: string;
|
|
1181
|
+
accountExplorerUrl: string;
|
|
1182
|
+
chainId: number;
|
|
1183
|
+
nativeCoinOperationHashPrefix: string;
|
|
1184
|
+
}
|
|
1185
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1186
|
+
name: string;
|
|
1187
|
+
family: CoinFamily;
|
|
1188
|
+
explorerUrl: string;
|
|
1189
|
+
accountExplorerUrl: string;
|
|
1190
|
+
chainId: number;
|
|
1191
|
+
nativeCoinOperationHashPrefix: string;
|
|
1192
|
+
}
|
|
1193
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1194
|
+
name: string;
|
|
1195
|
+
family: CoinFamily;
|
|
1196
|
+
explorerUrl: string;
|
|
1197
|
+
accountExplorerUrl: string;
|
|
1198
|
+
chainId: number;
|
|
1199
|
+
nativeCoinOperationHashPrefix: string;
|
|
1200
|
+
}
|
|
1201
|
+
declare class LineaETH extends Mainnet implements EthereumNetwork {
|
|
1202
|
+
name: string;
|
|
1203
|
+
family: CoinFamily;
|
|
1204
|
+
explorerUrl: string;
|
|
1205
|
+
accountExplorerUrl: string;
|
|
1206
|
+
chainId: number;
|
|
1207
|
+
nativeCoinOperationHashPrefix: string;
|
|
1208
|
+
}
|
|
1209
|
+
declare class LineaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1210
|
+
name: string;
|
|
1211
|
+
family: CoinFamily;
|
|
1212
|
+
explorerUrl: string;
|
|
1213
|
+
accountExplorerUrl: string;
|
|
1214
|
+
chainId: number;
|
|
1215
|
+
nativeCoinOperationHashPrefix: string;
|
|
1216
|
+
}
|
|
1217
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1218
|
+
name: string;
|
|
1219
|
+
family: CoinFamily;
|
|
1220
|
+
explorerUrl: string;
|
|
1221
|
+
accountExplorerUrl: string;
|
|
1222
|
+
chainId: number;
|
|
1223
|
+
nativeCoinOperationHashPrefix: string;
|
|
1224
|
+
}
|
|
1225
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1226
|
+
name: string;
|
|
1227
|
+
family: CoinFamily;
|
|
1228
|
+
explorerUrl: string;
|
|
1229
|
+
accountExplorerUrl: string;
|
|
1230
|
+
chainId: number;
|
|
1231
|
+
nativeCoinOperationHashPrefix: string;
|
|
1232
|
+
}
|
|
1233
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1234
|
+
name: string;
|
|
1235
|
+
family: CoinFamily;
|
|
1236
|
+
explorerUrl: string;
|
|
1237
|
+
accountExplorerUrl: string;
|
|
1238
|
+
chainId: number;
|
|
1239
|
+
nativeCoinOperationHashPrefix: string;
|
|
1240
|
+
walletFactoryAddress: string;
|
|
1241
|
+
batcherContractAddress: string;
|
|
1242
|
+
forwarderFactoryAddress: string;
|
|
1243
|
+
forwarderImplementationAddress: string;
|
|
1244
|
+
walletImplementationAddress: string;
|
|
1245
|
+
}
|
|
1246
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1247
|
+
name: string;
|
|
1248
|
+
family: CoinFamily;
|
|
1249
|
+
explorerUrl: string;
|
|
1250
|
+
accountExplorerUrl: string;
|
|
1251
|
+
chainId: number;
|
|
1252
|
+
nativeCoinOperationHashPrefix: string;
|
|
1253
|
+
}
|
|
1254
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1255
|
+
name: string;
|
|
1256
|
+
family: CoinFamily;
|
|
1257
|
+
explorerUrl: string;
|
|
1258
|
+
accountExplorerUrl: string;
|
|
1259
|
+
chainId: number;
|
|
1260
|
+
nativeCoinOperationHashPrefix: string;
|
|
1261
|
+
walletFactoryAddress: string;
|
|
1262
|
+
batcherContractAddress: string;
|
|
1263
|
+
forwarderFactoryAddress: string;
|
|
1264
|
+
forwarderImplementationAddress: string;
|
|
1265
|
+
walletImplementationAddress: string;
|
|
1266
|
+
}
|
|
1267
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1268
|
+
name: string;
|
|
1269
|
+
family: CoinFamily;
|
|
1270
|
+
explorerUrl: string;
|
|
1271
|
+
accountExplorerUrl: string;
|
|
1272
|
+
chainId: number;
|
|
1273
|
+
nativeCoinOperationHashPrefix: string;
|
|
1274
|
+
}
|
|
1275
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1276
|
+
name: string;
|
|
1277
|
+
family: CoinFamily;
|
|
1278
|
+
explorerUrl: string;
|
|
1279
|
+
accountExplorerUrl: string;
|
|
1280
|
+
chainId: number;
|
|
1281
|
+
nativeCoinOperationHashPrefix: string;
|
|
1282
|
+
walletFactoryAddress: string;
|
|
1283
|
+
batcherContractAddress: string;
|
|
1284
|
+
forwarderFactoryAddress: string;
|
|
1285
|
+
forwarderImplementationAddress: string;
|
|
1286
|
+
walletImplementationAddress: string;
|
|
1287
|
+
}
|
|
1288
|
+
declare class Og extends Mainnet implements EthereumNetwork {
|
|
1289
|
+
name: string;
|
|
1290
|
+
family: CoinFamily;
|
|
1291
|
+
explorerUrl: string;
|
|
1292
|
+
accountExplorerUrl: string;
|
|
1293
|
+
chainId: number;
|
|
1294
|
+
nativeCoinOperationHashPrefix: string;
|
|
1295
|
+
}
|
|
1296
|
+
declare class OgTestnet extends Testnet implements EthereumNetwork {
|
|
1297
|
+
name: string;
|
|
1298
|
+
family: CoinFamily;
|
|
1299
|
+
explorerUrl: string;
|
|
1300
|
+
accountExplorerUrl: string;
|
|
1301
|
+
chainId: number;
|
|
1302
|
+
nativeCoinOperationHashPrefix: string;
|
|
1303
|
+
}
|
|
1304
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1305
|
+
name: string;
|
|
1306
|
+
family: CoinFamily;
|
|
1307
|
+
explorerUrl: string;
|
|
1308
|
+
accountExplorerUrl: string;
|
|
1309
|
+
chainId: number;
|
|
1310
|
+
nativeCoinOperationHashPrefix: string;
|
|
1311
|
+
batcherContractAddress: string;
|
|
1312
|
+
forwarderFactoryAddress: string;
|
|
1313
|
+
forwarderImplementationAddress: string;
|
|
1314
|
+
}
|
|
1315
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1316
|
+
name: string;
|
|
1317
|
+
family: CoinFamily;
|
|
1318
|
+
explorerUrl: string;
|
|
1319
|
+
accountExplorerUrl: string;
|
|
1320
|
+
chainId: number;
|
|
1321
|
+
nativeCoinOperationHashPrefix: string;
|
|
1322
|
+
batcherContractAddress: string;
|
|
1323
|
+
forwarderFactoryAddress: string;
|
|
1324
|
+
forwarderImplementationAddress: string;
|
|
1325
|
+
}
|
|
1326
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1327
|
+
name: string;
|
|
1328
|
+
family: CoinFamily;
|
|
1329
|
+
explorerUrl: string;
|
|
1330
|
+
accountExplorerUrl: string;
|
|
1331
|
+
chainId: number;
|
|
1332
|
+
nativeCoinOperationHashPrefix: string;
|
|
1333
|
+
batcherContractAddress: string;
|
|
1334
|
+
forwarderFactoryAddress: string;
|
|
1335
|
+
forwarderImplementationAddress: string;
|
|
1336
|
+
}
|
|
1337
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1338
|
+
name: string;
|
|
1339
|
+
family: CoinFamily;
|
|
1340
|
+
explorerUrl: string;
|
|
1341
|
+
accountExplorerUrl: string;
|
|
1342
|
+
chainId: number;
|
|
1343
|
+
nativeCoinOperationHashPrefix: string;
|
|
1344
|
+
batcherContractAddress: string;
|
|
1345
|
+
forwarderFactoryAddress: string;
|
|
1346
|
+
forwarderImplementationAddress: string;
|
|
1347
|
+
}
|
|
1348
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1349
|
+
name: string;
|
|
1350
|
+
family: CoinFamily;
|
|
1351
|
+
explorerUrl: string;
|
|
1352
|
+
accountExplorerUrl: string;
|
|
1353
|
+
chainId: number;
|
|
1354
|
+
nativeCoinOperationHashPrefix: string;
|
|
1355
|
+
walletFactoryAddress: string;
|
|
1356
|
+
batcherContractAddress: string;
|
|
1357
|
+
forwarderFactoryAddress: string;
|
|
1358
|
+
forwarderImplementationAddress: string;
|
|
1359
|
+
walletImplementationAddress: string;
|
|
1360
|
+
}
|
|
1361
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1362
|
+
name: string;
|
|
1363
|
+
family: CoinFamily;
|
|
1364
|
+
explorerUrl: string;
|
|
1365
|
+
chainId: number;
|
|
1366
|
+
nativeCoinOperationHashPrefix: string;
|
|
1367
|
+
walletImplementationAddress: string;
|
|
1368
|
+
batcherContractAddress: string;
|
|
1369
|
+
forwarderFactoryAddress: string;
|
|
1370
|
+
forwarderImplementationAddress: string;
|
|
1371
|
+
}
|
|
1372
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1373
|
+
name: string;
|
|
1374
|
+
family: CoinFamily;
|
|
1375
|
+
explorerUrl: string;
|
|
1376
|
+
accountExplorerUrl: string;
|
|
1377
|
+
chainId: number;
|
|
1378
|
+
nativeCoinOperationHashPrefix: string;
|
|
1379
|
+
walletImplementationAddress: string;
|
|
1380
|
+
batcherContractAddress: string;
|
|
1381
|
+
forwarderFactoryAddress: string;
|
|
1382
|
+
forwarderImplementationAddress: string;
|
|
1383
|
+
}
|
|
1384
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1385
|
+
name: string;
|
|
1386
|
+
family: CoinFamily;
|
|
1387
|
+
explorerUrl: string;
|
|
1388
|
+
accountExplorerUrl: string;
|
|
1389
|
+
chainId: number;
|
|
1390
|
+
nativeCoinOperationHashPrefix: string;
|
|
1391
|
+
batcherContractAddress: string;
|
|
1392
|
+
forwarderFactoryAddress: string;
|
|
1393
|
+
forwarderImplementationAddress: string;
|
|
1394
|
+
walletImplementationAddress: string;
|
|
1395
|
+
}
|
|
1396
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1397
|
+
name: string;
|
|
1398
|
+
family: CoinFamily;
|
|
1399
|
+
explorerUrl: string;
|
|
1400
|
+
accountExplorerUrl: string;
|
|
1401
|
+
chainId: number;
|
|
1402
|
+
nativeCoinOperationHashPrefix: string;
|
|
1403
|
+
walletImplementationAddress: string;
|
|
1404
|
+
walletFactoryAddress: string;
|
|
1405
|
+
batcherContractAddress: string;
|
|
1406
|
+
forwarderFactoryAddress: string;
|
|
1407
|
+
forwarderImplementationAddress: string;
|
|
1408
|
+
}
|
|
1409
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1410
|
+
name: string;
|
|
1411
|
+
family: CoinFamily;
|
|
1412
|
+
explorerUrl: string;
|
|
1413
|
+
accountExplorerUrl: string;
|
|
1414
|
+
chainId: number;
|
|
1415
|
+
nativeCoinOperationHashPrefix: string;
|
|
1416
|
+
walletFactoryAddress: string;
|
|
1417
|
+
batcherContractAddress: string;
|
|
1418
|
+
forwarderFactoryAddress: string;
|
|
1419
|
+
forwarderImplementationAddress: string;
|
|
1420
|
+
walletImplementationAddress: string;
|
|
1421
|
+
}
|
|
1422
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1423
|
+
name: string;
|
|
1424
|
+
family: CoinFamily;
|
|
1425
|
+
explorerUrl: string;
|
|
1426
|
+
accountExplorerUrl: string;
|
|
1427
|
+
chainId: number;
|
|
1428
|
+
nativeCoinOperationHashPrefix: string;
|
|
1429
|
+
}
|
|
1430
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1431
|
+
name: string;
|
|
1432
|
+
family: CoinFamily;
|
|
1433
|
+
explorerUrl: string;
|
|
1434
|
+
accountExplorerUrl: string;
|
|
1435
|
+
chainId: number;
|
|
1436
|
+
nativeCoinOperationHashPrefix: string;
|
|
1437
|
+
walletFactoryAddress: string;
|
|
1438
|
+
batcherContractAddress: string;
|
|
1439
|
+
forwarderFactoryAddress: string;
|
|
1440
|
+
forwarderImplementationAddress: string;
|
|
1441
|
+
walletImplementationAddress: string;
|
|
1442
|
+
}
|
|
1443
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1444
|
+
name: string;
|
|
1445
|
+
family: CoinFamily;
|
|
1446
|
+
explorerUrl: string;
|
|
1447
|
+
chainId: number;
|
|
1448
|
+
nativeCoinOperationHashPrefix: string;
|
|
1449
|
+
walletImplementationAddress: string;
|
|
1450
|
+
walletFactoryAddress: string;
|
|
1451
|
+
forwarderImplementationAddress: string;
|
|
1452
|
+
forwarderFactoryAddress: string;
|
|
1453
|
+
batcherContractAddress: string;
|
|
1454
|
+
}
|
|
1455
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1456
|
+
name: string;
|
|
1457
|
+
family: CoinFamily;
|
|
1458
|
+
explorerUrl: string;
|
|
1459
|
+
accountExplorerUrl: string;
|
|
1460
|
+
chainId: number;
|
|
1461
|
+
nativeCoinOperationHashPrefix: string;
|
|
1462
|
+
walletFactoryAddress: string;
|
|
1463
|
+
batcherContractAddress: string;
|
|
1464
|
+
forwarderFactoryAddress: string;
|
|
1465
|
+
forwarderImplementationAddress: string;
|
|
1466
|
+
walletImplementationAddress: string;
|
|
1467
|
+
}
|
|
1468
|
+
declare class Somi extends Mainnet implements EthereumNetwork {
|
|
1469
|
+
name: string;
|
|
1470
|
+
family: CoinFamily;
|
|
1471
|
+
explorerUrl: string;
|
|
1472
|
+
chainId: number;
|
|
1473
|
+
nativeCoinOperationHashPrefix: string;
|
|
1474
|
+
walletImplementationAddress: string;
|
|
1475
|
+
walletFactoryAddress: string;
|
|
1476
|
+
forwarderImplementationAddress: string;
|
|
1477
|
+
forwarderFactoryAddress: string;
|
|
1478
|
+
batcherContractAddress: string;
|
|
1479
|
+
}
|
|
1480
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1481
|
+
name: string;
|
|
1482
|
+
family: CoinFamily;
|
|
1483
|
+
explorerUrl: string;
|
|
1484
|
+
accountExplorerUrl: string;
|
|
1485
|
+
chainId: number;
|
|
1486
|
+
nativeCoinOperationHashPrefix: string;
|
|
1487
|
+
batcherContractAddress: string;
|
|
1488
|
+
forwarderFactoryAddress: string;
|
|
1489
|
+
forwarderImplementationAddress: string;
|
|
1490
|
+
}
|
|
1491
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1492
|
+
name: string;
|
|
1493
|
+
family: CoinFamily;
|
|
1494
|
+
explorerUrl: string;
|
|
1495
|
+
accountExplorerUrl: string;
|
|
1496
|
+
chainId: number;
|
|
1497
|
+
nativeCoinOperationHashPrefix: string;
|
|
1498
|
+
batcherContractAddress: string;
|
|
1499
|
+
forwarderFactoryAddress: string;
|
|
1500
|
+
forwarderImplementationAddress: string;
|
|
1501
|
+
}
|
|
1502
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1503
|
+
name: string;
|
|
1504
|
+
family: CoinFamily;
|
|
1505
|
+
explorerUrl: string;
|
|
1506
|
+
accountExplorerUrl: string;
|
|
1507
|
+
chainId: number;
|
|
1508
|
+
nativeCoinOperationHashPrefix: string;
|
|
1509
|
+
batcherContractAddress: string;
|
|
1510
|
+
forwarderFactoryAddress: string;
|
|
1511
|
+
forwarderImplementationAddress: string;
|
|
1512
|
+
}
|
|
1513
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1514
|
+
name: string;
|
|
1515
|
+
family: CoinFamily;
|
|
1516
|
+
explorerUrl: string;
|
|
1517
|
+
accountExplorerUrl: string;
|
|
1518
|
+
chainId: number;
|
|
1519
|
+
nativeCoinOperationHashPrefix: string;
|
|
1520
|
+
batcherContractAddress: string;
|
|
1521
|
+
forwarderFactoryAddress: string;
|
|
1522
|
+
forwarderImplementationAddress: string;
|
|
1523
|
+
}
|
|
1524
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1525
|
+
name: string;
|
|
1526
|
+
family: CoinFamily;
|
|
1527
|
+
explorerUrl: string;
|
|
1528
|
+
accountExplorerUrl: string;
|
|
1529
|
+
chainId: number;
|
|
1530
|
+
nativeCoinOperationHashPrefix: string;
|
|
1531
|
+
tokenOperationHashPrefix: string;
|
|
1532
|
+
forwarderFactoryAddress: string;
|
|
1533
|
+
forwarderImplementationAddress: string;
|
|
1534
|
+
walletFactoryAddress: string;
|
|
1535
|
+
walletImplementationAddress: string;
|
|
1536
|
+
}
|
|
1537
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1538
|
+
name: string;
|
|
1539
|
+
family: CoinFamily;
|
|
1540
|
+
explorerUrl: string;
|
|
1541
|
+
accountExplorerUrl: string;
|
|
1542
|
+
chainId: number;
|
|
1543
|
+
nativeCoinOperationHashPrefix: string;
|
|
1544
|
+
tokenOperationHashPrefix: string;
|
|
1545
|
+
forwarderFactoryAddress: string;
|
|
1546
|
+
forwarderImplementationAddress: string;
|
|
1547
|
+
walletFactoryAddress: string;
|
|
1548
|
+
walletImplementationAddress: string;
|
|
1549
|
+
}
|
|
1550
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1551
|
+
name: string;
|
|
1552
|
+
family: CoinFamily;
|
|
1553
|
+
explorerUrl: string;
|
|
1554
|
+
specName: string;
|
|
1555
|
+
genesisHash: string;
|
|
1556
|
+
specVersion: number;
|
|
1557
|
+
chainName: string;
|
|
1558
|
+
txVersion: number;
|
|
1559
|
+
}
|
|
1560
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1561
|
+
name: string;
|
|
1562
|
+
family: CoinFamily;
|
|
1563
|
+
explorerUrl: string;
|
|
1564
|
+
specName: SubstrateSpecNameType;
|
|
1565
|
+
genesisHash: string;
|
|
1566
|
+
specVersion: number;
|
|
1567
|
+
chainName: string;
|
|
1568
|
+
txVersion: number;
|
|
1569
|
+
}
|
|
1570
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1571
|
+
name: string;
|
|
1572
|
+
family: CoinFamily;
|
|
1573
|
+
explorerUrl: string;
|
|
1574
|
+
accountExplorerUrl: string;
|
|
1575
|
+
chainId: number;
|
|
1576
|
+
forwarderFactoryAddress: string;
|
|
1577
|
+
forwarderImplementationAddress: string;
|
|
1578
|
+
}
|
|
1579
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1580
|
+
name: string;
|
|
1581
|
+
family: CoinFamily;
|
|
1582
|
+
explorerUrl: string;
|
|
1583
|
+
accountExplorerUrl: string;
|
|
1584
|
+
chainId: number;
|
|
1585
|
+
forwarderFactoryAddress: string;
|
|
1586
|
+
forwarderImplementationAddress: string;
|
|
672
1587
|
}
|
|
673
1588
|
export declare const Networks: {
|
|
674
1589
|
main: {
|
|
675
1590
|
ada: Readonly<Ada>;
|
|
676
1591
|
algorand: Readonly<Algorand>;
|
|
1592
|
+
apechain: Readonly<ApeChain>;
|
|
1593
|
+
apt: Readonly<Apt>;
|
|
1594
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1595
|
+
asi: Readonly<Asi>;
|
|
677
1596
|
atom: Readonly<Atom>;
|
|
678
1597
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1598
|
avalancheP: Readonly<AvalancheP>;
|
|
1599
|
+
baby: Readonly<Baby>;
|
|
1600
|
+
basechain: Readonly<BaseChain>;
|
|
680
1601
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1602
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1603
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1604
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1605
|
+
bera: Readonly<Berachain>;
|
|
684
1606
|
bld: Readonly<Bld>;
|
|
685
1607
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1608
|
casper: Readonly<Casper>;
|
|
687
1609
|
celo: Readonly<Celo>;
|
|
1610
|
+
coredao: Readonly<Coredao>;
|
|
1611
|
+
coreum: Readonly<Coreum>;
|
|
1612
|
+
cronos: Readonly<Cronos>;
|
|
688
1613
|
dash: Readonly<Dash>;
|
|
689
1614
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1615
|
dot: Readonly<Polkadot>;
|
|
@@ -695,73 +1620,157 @@ export declare const Networks: {
|
|
|
695
1620
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1621
|
ethereumW: Readonly<EthereumW>;
|
|
697
1622
|
fiat: Readonly<Fiat>;
|
|
1623
|
+
fetchai: Readonly<FetchAi>;
|
|
1624
|
+
flr: Readonly<Flare>;
|
|
698
1625
|
hash: Readonly<Hash>;
|
|
699
1626
|
hedera: Readonly<Hedera>;
|
|
1627
|
+
icp: Readonly<Icp>;
|
|
1628
|
+
ip: Readonly<IP>;
|
|
1629
|
+
initia: Readonly<Initia>;
|
|
700
1630
|
injective: Readonly<Injective>;
|
|
1631
|
+
irys: Readonly<Irys>;
|
|
1632
|
+
islm: Readonly<Islm>;
|
|
1633
|
+
kaia: Readonly<Kaia>;
|
|
1634
|
+
kava: Readonly<Kava>;
|
|
1635
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1636
|
litecoin: Readonly<Litecoin>;
|
|
1637
|
+
mon: Readonly<Monad>;
|
|
1638
|
+
mantra: Readonly<Mantra>;
|
|
702
1639
|
polygon: Readonly<Polygon>;
|
|
1640
|
+
polyx: Readonly<Polymesh>;
|
|
1641
|
+
phrs: Readonly<Pharos>;
|
|
1642
|
+
ctc: Readonly<Creditcoin>;
|
|
1643
|
+
hypeevm: Readonly<HypeEVM>;
|
|
1644
|
+
lineaeth: Readonly<LineaETH>;
|
|
1645
|
+
oas: Readonly<Oas>;
|
|
1646
|
+
og: Readonly<Og>;
|
|
703
1647
|
ofc: Readonly<Ofc>;
|
|
1648
|
+
optimism: Readonly<Optimism>;
|
|
704
1649
|
osmo: Readonly<Osmo>;
|
|
705
1650
|
rbtc: Readonly<Rbtc>;
|
|
1651
|
+
rune: Readonly<Rune>;
|
|
706
1652
|
stellar: Readonly<Stellar>;
|
|
707
1653
|
sei: Readonly<Sei>;
|
|
1654
|
+
seievm: Readonly<SeiEvm>;
|
|
1655
|
+
sgb: Readonly<Songbird>;
|
|
708
1656
|
sol: Readonly<Sol>;
|
|
1657
|
+
sonic: Readonly<Sonic>;
|
|
709
1658
|
sui: Readonly<Sui>;
|
|
710
1659
|
near: Readonly<Near>;
|
|
711
1660
|
stx: Readonly<Stx>;
|
|
1661
|
+
stt: Readonly<Somnia>;
|
|
1662
|
+
somi: Readonly<Somi>;
|
|
1663
|
+
soneium: Readonly<Soneium>;
|
|
712
1664
|
susd: Readonly<SUSD>;
|
|
1665
|
+
tao: Readonly<Bittensor>;
|
|
713
1666
|
tia: Readonly<Tia>;
|
|
1667
|
+
ton: Readonly<Ton>;
|
|
714
1668
|
trx: Readonly<Trx>;
|
|
1669
|
+
vet: Readonly<Vet>;
|
|
1670
|
+
wemix: Readonly<Wemix>;
|
|
1671
|
+
world: Readonly<World>;
|
|
1672
|
+
xdc: Readonly<Xdc>;
|
|
1673
|
+
xpl: Readonly<Plasma>;
|
|
715
1674
|
xrp: Readonly<Xrp>;
|
|
716
1675
|
xtz: Readonly<Xtz>;
|
|
717
1676
|
zCash: Readonly<ZCash>;
|
|
718
1677
|
zeta: Readonly<Zeta>;
|
|
1678
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1679
|
};
|
|
720
1680
|
test: {
|
|
721
1681
|
ada: Readonly<AdaTestnet>;
|
|
722
1682
|
algorand: Readonly<AlgorandTestnet>;
|
|
1683
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1684
|
+
apt: Readonly<AptTestnet>;
|
|
1685
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1686
|
+
asi: Readonly<AsiTestnet>;
|
|
723
1687
|
atom: Readonly<AtomTestnet>;
|
|
724
1688
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1689
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1690
|
+
baby: Readonly<BabyTestnet>;
|
|
1691
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1692
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1693
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1694
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1695
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1696
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1697
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1698
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1699
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1700
|
bld: Readonly<BldTestnet>;
|
|
731
1701
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1702
|
casper: Readonly<CasperTestnet>;
|
|
1703
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1704
|
celo: Readonly<CeloTestnet>;
|
|
1705
|
+
cronos: Readonly<CronosTestnet>;
|
|
734
1706
|
dash: Readonly<DashTestnet>;
|
|
735
1707
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
736
1708
|
dot: Readonly<PolkadotTestnet>;
|
|
737
1709
|
eCash: Readonly<ECashTestnet>;
|
|
738
1710
|
eos: Readonly<EosTestnet>;
|
|
739
1711
|
fiat: Readonly<FiatTestnet>;
|
|
1712
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1713
|
+
flr: Readonly<FlareTestnet>;
|
|
1714
|
+
mon: Readonly<MonadTestnet>;
|
|
740
1715
|
pyrmont: Readonly<Pyrmont>;
|
|
741
1716
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1717
|
hash: Readonly<HashTestnet>;
|
|
743
1718
|
hedera: Readonly<HederaTestnet>;
|
|
1719
|
+
icp: Readonly<IcpTestnet>;
|
|
1720
|
+
ip: Readonly<IPTestnet>;
|
|
1721
|
+
initia: Readonly<InitiaTestnet>;
|
|
744
1722
|
injective: Readonly<InjectiveTestnet>;
|
|
1723
|
+
irys: Readonly<IrysTestnet>;
|
|
1724
|
+
islm: Readonly<IslmTestnet>;
|
|
1725
|
+
kava: Readonly<KavaTestnet>;
|
|
745
1726
|
kovan: Readonly<Kovan>;
|
|
746
1727
|
goerli: Readonly<Goerli>;
|
|
1728
|
+
holesky: Readonly<Holesky>;
|
|
1729
|
+
hoodi: Readonly<Hoodi>;
|
|
1730
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1731
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1732
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1733
|
polygon: Readonly<PolygonTestnet>;
|
|
1734
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1735
|
+
phrs: Readonly<PharosTestnet>;
|
|
1736
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
1737
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
1738
|
+
lineaeth: Readonly<LineaETHTestnet>;
|
|
1739
|
+
oas: Readonly<OasTestnet>;
|
|
1740
|
+
og: Readonly<OgTestnet>;
|
|
749
1741
|
ofc: Readonly<OfcTestnet>;
|
|
1742
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1743
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1744
|
rbtc: Readonly<RbtcTestnet>;
|
|
1745
|
+
rune: Readonly<RuneTestNet>;
|
|
1746
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1747
|
stellar: Readonly<StellarTestnet>;
|
|
753
1748
|
sei: Readonly<SeiTestnet>;
|
|
1749
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
754
1750
|
sol: Readonly<SolTestnet>;
|
|
755
1751
|
sui: Readonly<SuiTestnet>;
|
|
756
1752
|
near: Readonly<NearTestnet>;
|
|
757
1753
|
stx: Readonly<StxTestnet>;
|
|
1754
|
+
stt: Readonly<SomniaTestnet>;
|
|
1755
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
1756
|
+
sonic: Readonly<SonicTestnet>;
|
|
1757
|
+
kaia: Readonly<KaiaTestnet>;
|
|
758
1758
|
susd: Readonly<SUSDTestnet>;
|
|
1759
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1760
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1761
|
tia: Readonly<TiaTestnet>;
|
|
1762
|
+
ton: Readonly<TonTestnet>;
|
|
760
1763
|
trx: Readonly<TrxTestnet>;
|
|
1764
|
+
vet: Readonly<VetTestnet>;
|
|
1765
|
+
wemix: Readonly<WemixTestnet>;
|
|
1766
|
+
world: Readonly<WorldTestnet>;
|
|
1767
|
+
xdc: Readonly<XdcTestnet>;
|
|
1768
|
+
xpl: Readonly<PlasmaTestnet>;
|
|
761
1769
|
xrp: Readonly<XrpTestnet>;
|
|
762
1770
|
xtz: Readonly<XtzTestnet>;
|
|
763
1771
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1772
|
zeta: Readonly<ZetaTestnet>;
|
|
1773
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1774
|
};
|
|
766
1775
|
};
|
|
767
1776
|
export {};
|