@bitgo-beta/statics 15.1.1-beta.147 → 15.1.1-beta.1470
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/dist/src/account.d.ts +839 -54
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1350 -154
- 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 +1045 -0
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +8 -3
- package/dist/src/base.d.ts +1955 -48
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +2037 -58
- package/dist/src/canton.d.ts +34 -0
- package/dist/src/canton.d.ts.map +1 -0
- package/dist/src/canton.js +51 -0
- package/dist/src/coinFeatures.d.ts +110 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +698 -0
- package/dist/src/coins/adaTokens.d.ts +2 -0
- package/dist/src/coins/adaTokens.d.ts.map +1 -0
- package/dist/src/coins/adaTokens.js +18 -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 +125 -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 +3 -0
- package/dist/src/coins/botTokens.d.ts.map +1 -0
- package/dist/src/coins/botTokens.js +43 -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 +191 -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 +1952 -0
- package/dist/src/coins/jettonTokens.d.ts +2 -0
- package/dist/src/coins/jettonTokens.d.ts.map +1 -0
- package/dist/src/coins/jettonTokens.js +17 -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 +16 -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 +804 -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 +1620 -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 +159 -0
- package/dist/src/coins/polyxTokens.d.ts +2 -0
- package/dist/src/coins/polyxTokens.d.ts.map +1 -0
- package/dist/src/coins/polyxTokens.js +21 -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 +3 -0
- package/dist/src/coins/solTokens.d.ts.map +1 -0
- package/dist/src/coins/solTokens.js +426 -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 +11 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +354 -1676
- 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/flrp.d.ts +40 -0
- package/dist/src/flrp.d.ts.map +1 -0
- package/dist/src/flrp.js +65 -0
- package/dist/src/index.d.ts +3 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +26 -3
- package/dist/src/lightning.d.ts +43 -0
- package/dist/src/lightning.d.ts.map +1 -0
- package/dist/src/lightning.js +62 -0
- package/dist/src/map.d.ts +10 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +146 -17
- package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
- package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
- package/dist/src/networkFeatureMapForTokens.js +31 -0
- package/dist/src/networks.d.ts +1289 -15
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1622 -96
- package/dist/src/ofc.d.ts +597 -3
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +1419 -28
- package/dist/src/tokenConfig.d.ts +250 -108
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +894 -218
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +84 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -3
- package/.mocharc.js +0 -10
- package/.prettierignore +0 -2
- package/CHANGELOG.md +0 -838
package/dist/src/networks.d.ts
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
export interface FlareNetwork extends BaseNetwork {
|
|
2
|
+
name: string;
|
|
3
|
+
family: CoinFamily;
|
|
4
|
+
explorerUrl: string;
|
|
5
|
+
accountExplorerUrl: string;
|
|
6
|
+
chainId?: number;
|
|
7
|
+
nativeCoinOperationHashPrefix?: string;
|
|
8
|
+
batcherContractAddress?: string;
|
|
9
|
+
forwarderFactoryAddress?: string;
|
|
10
|
+
forwarderImplementationAddress?: string;
|
|
11
|
+
blockchainID: string;
|
|
12
|
+
cChainBlockchainID: string;
|
|
13
|
+
networkID: number;
|
|
14
|
+
hrp: string;
|
|
15
|
+
alias: string;
|
|
16
|
+
assetId: string;
|
|
17
|
+
vm?: string;
|
|
18
|
+
txFee: string;
|
|
19
|
+
maxImportFee: string;
|
|
20
|
+
createSubnetTx?: string;
|
|
21
|
+
createChainTx?: string;
|
|
22
|
+
creationTxFee?: string;
|
|
23
|
+
minConsumption?: string;
|
|
24
|
+
maxConsumption?: string;
|
|
25
|
+
maxSupply?: string;
|
|
26
|
+
minStake: string;
|
|
27
|
+
minStakeDuration?: string;
|
|
28
|
+
maxStakeDuration?: string;
|
|
29
|
+
minDelegationStake?: string;
|
|
30
|
+
minDelegationFee?: string;
|
|
31
|
+
}
|
|
1
32
|
import { CoinFamily } from './base';
|
|
2
33
|
export declare enum NetworkType {
|
|
3
34
|
MAINNET = "mainnet",
|
|
@@ -11,6 +42,25 @@ export declare abstract class BaseNetwork {
|
|
|
11
42
|
}
|
|
12
43
|
export interface UtxoNetwork extends BaseNetwork {
|
|
13
44
|
utxolibName: string;
|
|
45
|
+
paygoAddressAttestationPubkey?: string;
|
|
46
|
+
}
|
|
47
|
+
export interface LightningNetwork extends UtxoNetwork {
|
|
48
|
+
/**
|
|
49
|
+
* The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
50
|
+
* between the user's extended private key and the Lightning service. This key facilitates secure communication
|
|
51
|
+
* by enabling the creation of a shared secret for encryption and decryption of data.
|
|
52
|
+
*/
|
|
53
|
+
lightningServicePubKey: string;
|
|
54
|
+
/**
|
|
55
|
+
* The public key of the middleware service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
56
|
+
* between the user's extended private key and the middleware service.
|
|
57
|
+
*/
|
|
58
|
+
middlewarePubKey: string;
|
|
59
|
+
/**
|
|
60
|
+
* The public key of the TAT service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
61
|
+
* between the user's extended private key and the TAT service.
|
|
62
|
+
*/
|
|
63
|
+
tatPubKey: string;
|
|
14
64
|
}
|
|
15
65
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
66
|
utxolibName: string;
|
|
@@ -40,15 +90,25 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
90
|
readonly minDelegationFee: string;
|
|
41
91
|
readonly avaxAssetID: string;
|
|
42
92
|
readonly txFee: string;
|
|
93
|
+
readonly maxImportFee: string;
|
|
43
94
|
}
|
|
44
95
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
96
|
readonly accountExplorerUrl?: string;
|
|
46
97
|
readonly blockExplorerUrl?: string;
|
|
47
98
|
}
|
|
99
|
+
export interface CosmosNetwork extends AccountNetwork {
|
|
100
|
+
readonly addressPrefix: string;
|
|
101
|
+
readonly validatorPrefix: string;
|
|
102
|
+
readonly denom: string;
|
|
103
|
+
readonly gasAmount: string;
|
|
104
|
+
readonly gasLimit: number;
|
|
105
|
+
readonly validDenoms: string[];
|
|
106
|
+
}
|
|
48
107
|
/**
|
|
49
108
|
* Specification name type of the chain. Used in setting up the registry
|
|
50
109
|
*/
|
|
51
|
-
export
|
|
110
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'westmint';
|
|
111
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet' | 'polymesh_mainnet';
|
|
52
112
|
export interface DotNetwork extends AccountNetwork {
|
|
53
113
|
readonly specName: PolkadotSpecNameType;
|
|
54
114
|
readonly genesisHash: string;
|
|
@@ -61,6 +121,18 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
121
|
readonly batcherContractAddress?: string;
|
|
62
122
|
readonly forwarderFactoryAddress?: string;
|
|
63
123
|
readonly forwarderImplementationAddress?: string;
|
|
124
|
+
readonly walletV2ForwarderFactoryAddress?: string;
|
|
125
|
+
readonly walletV2ForwarderImplementationAddress?: string;
|
|
126
|
+
readonly walletV4ForwarderFactoryAddress?: string;
|
|
127
|
+
readonly walletV4ForwarderImplementationAddress?: string;
|
|
128
|
+
readonly walletFactoryAddress?: string;
|
|
129
|
+
readonly walletImplementationAddress?: string;
|
|
130
|
+
readonly walletV2FactoryAddress?: string;
|
|
131
|
+
readonly walletV2ImplementationAddress?: string;
|
|
132
|
+
readonly walletV4FactoryAddress?: string;
|
|
133
|
+
readonly walletV4ImplementationAddress?: string;
|
|
134
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
135
|
+
readonly tokenOperationHashPrefix?: string;
|
|
64
136
|
}
|
|
65
137
|
export interface TronNetwork extends AccountNetwork {
|
|
66
138
|
maxFeeLimit: string;
|
|
@@ -110,12 +182,45 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
182
|
poolDeposit: number;
|
|
111
183
|
stakeKeyDeposit: number;
|
|
112
184
|
}
|
|
185
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
186
|
+
name: string;
|
|
187
|
+
family: CoinFamily;
|
|
188
|
+
explorerUrl: string;
|
|
189
|
+
accountExplorerUrl: string;
|
|
190
|
+
blockExplorerUrl: string;
|
|
191
|
+
}
|
|
192
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
193
|
+
name: string;
|
|
194
|
+
family: CoinFamily;
|
|
195
|
+
explorerUrl: string;
|
|
196
|
+
accountExplorerUrl: string;
|
|
197
|
+
blockExplorerUrl: string;
|
|
198
|
+
}
|
|
199
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
200
|
+
name: string;
|
|
201
|
+
family: CoinFamily;
|
|
202
|
+
explorerUrl: string;
|
|
203
|
+
accountExplorerUrl: string;
|
|
204
|
+
}
|
|
205
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
206
|
+
name: string;
|
|
207
|
+
family: CoinFamily;
|
|
208
|
+
explorerUrl: string;
|
|
209
|
+
accountExplorerUrl: string;
|
|
210
|
+
}
|
|
113
211
|
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
114
212
|
name: string;
|
|
115
213
|
family: CoinFamily;
|
|
116
214
|
explorerUrl: string;
|
|
117
215
|
accountExplorerUrl: string;
|
|
118
216
|
chainId: number;
|
|
217
|
+
nativeCoinOperationHashPrefix: string;
|
|
218
|
+
tokenOperationHashPrefix: string;
|
|
219
|
+
forwarderFactoryAddress: string;
|
|
220
|
+
forwarderImplementationAddress: string;
|
|
221
|
+
walletFactoryAddress: string;
|
|
222
|
+
walletImplementationAddress: string;
|
|
223
|
+
batcherContractAddress: string;
|
|
119
224
|
}
|
|
120
225
|
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
121
226
|
name: string;
|
|
@@ -123,6 +228,13 @@ declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
|
123
228
|
explorerUrl: string;
|
|
124
229
|
accountExplorerUrl: string;
|
|
125
230
|
chainId: number;
|
|
231
|
+
nativeCoinOperationHashPrefix: string;
|
|
232
|
+
tokenOperationHashPrefix: string;
|
|
233
|
+
forwarderFactoryAddress: string;
|
|
234
|
+
forwarderImplementationAddress: string;
|
|
235
|
+
walletFactoryAddress: string;
|
|
236
|
+
walletImplementationAddress: string;
|
|
237
|
+
batcherContractAddress: string;
|
|
126
238
|
}
|
|
127
239
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
128
240
|
name: string;
|
|
@@ -151,6 +263,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
151
263
|
alias: string;
|
|
152
264
|
vm: string;
|
|
153
265
|
txFee: string;
|
|
266
|
+
maxImportFee: string;
|
|
154
267
|
createSubnetTx: string;
|
|
155
268
|
createChainTx: string;
|
|
156
269
|
creationTxFee: string;
|
|
@@ -176,6 +289,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
176
289
|
hrp: string;
|
|
177
290
|
vm: string;
|
|
178
291
|
txFee: string;
|
|
292
|
+
maxImportFee: string;
|
|
179
293
|
createSubnetTx: string;
|
|
180
294
|
createChainTx: string;
|
|
181
295
|
creationTxFee: string;
|
|
@@ -194,6 +308,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
194
308
|
explorerUrl: string;
|
|
195
309
|
accountExplorerUrl: string;
|
|
196
310
|
chainId: number;
|
|
311
|
+
nativeCoinOperationHashPrefix: string;
|
|
312
|
+
tokenOperationHashPrefix: string;
|
|
313
|
+
batcherContractAddress: string;
|
|
197
314
|
}
|
|
198
315
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
199
316
|
name: string;
|
|
@@ -201,6 +318,27 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
201
318
|
explorerUrl: string;
|
|
202
319
|
accountExplorerUrl: string;
|
|
203
320
|
chainId: number;
|
|
321
|
+
nativeCoinOperationHashPrefix: string;
|
|
322
|
+
tokenOperationHashPrefix: string;
|
|
323
|
+
batcherContractAddress: string;
|
|
324
|
+
}
|
|
325
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
326
|
+
name: string;
|
|
327
|
+
family: CoinFamily;
|
|
328
|
+
utxolibName: string;
|
|
329
|
+
explorerUrl: string;
|
|
330
|
+
lightningServicePubKey: string;
|
|
331
|
+
middlewarePubKey: string;
|
|
332
|
+
tatPubKey: string;
|
|
333
|
+
}
|
|
334
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
335
|
+
name: string;
|
|
336
|
+
family: CoinFamily;
|
|
337
|
+
utxolibName: string;
|
|
338
|
+
explorerUrl: string;
|
|
339
|
+
lightningServicePubKey: string;
|
|
340
|
+
middlewarePubKey: string;
|
|
341
|
+
tatPubKey: string;
|
|
204
342
|
}
|
|
205
343
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
206
344
|
name: string;
|
|
@@ -213,6 +351,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
213
351
|
family: CoinFamily;
|
|
214
352
|
utxolibName: string;
|
|
215
353
|
explorerUrl: string;
|
|
354
|
+
paygoAddressAttestationPubkey: string;
|
|
355
|
+
}
|
|
356
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
357
|
+
name: string;
|
|
358
|
+
family: CoinFamily;
|
|
359
|
+
utxolibName: string;
|
|
360
|
+
explorerUrl: string;
|
|
361
|
+
}
|
|
362
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
363
|
+
name: string;
|
|
364
|
+
family: CoinFamily;
|
|
365
|
+
utxolibName: string;
|
|
366
|
+
explorerUrl: string;
|
|
367
|
+
}
|
|
368
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
369
|
+
name: string;
|
|
370
|
+
family: CoinFamily;
|
|
371
|
+
utxolibName: string;
|
|
372
|
+
explorerUrl: string;
|
|
216
373
|
}
|
|
217
374
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
218
375
|
name: string;
|
|
@@ -286,7 +443,7 @@ declare class ECashTestnet extends Testnet implements UtxoNetwork {
|
|
|
286
443
|
utxolibName: string;
|
|
287
444
|
explorerUrl: undefined;
|
|
288
445
|
}
|
|
289
|
-
declare class
|
|
446
|
+
declare class PolkadotAssetHub extends Mainnet implements DotNetwork {
|
|
290
447
|
name: string;
|
|
291
448
|
family: CoinFamily;
|
|
292
449
|
explorerUrl: string;
|
|
@@ -296,7 +453,7 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
296
453
|
chainName: string;
|
|
297
454
|
txVersion: number;
|
|
298
455
|
}
|
|
299
|
-
declare class
|
|
456
|
+
declare class WestendAssetHub extends Testnet implements DotNetwork {
|
|
300
457
|
name: string;
|
|
301
458
|
family: CoinFamily;
|
|
302
459
|
explorerUrl: string;
|
|
@@ -312,6 +469,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
312
469
|
explorerUrl: string;
|
|
313
470
|
accountExplorerUrl: string;
|
|
314
471
|
chainId: number;
|
|
472
|
+
nativeCoinOperationHashPrefix: string;
|
|
473
|
+
tokenOperationHashPrefix: string;
|
|
315
474
|
}
|
|
316
475
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
317
476
|
name: string;
|
|
@@ -319,6 +478,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
319
478
|
explorerUrl: string;
|
|
320
479
|
accountExplorerUrl: string;
|
|
321
480
|
chainId: number;
|
|
481
|
+
nativeCoinOperationHashPrefix: string;
|
|
482
|
+
tokenOperationHashPrefix: string;
|
|
322
483
|
}
|
|
323
484
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
324
485
|
name: string;
|
|
@@ -342,6 +503,18 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
342
503
|
batcherContractAddress: string;
|
|
343
504
|
forwarderFactoryAddress: string;
|
|
344
505
|
forwarderImplementationAddress: string;
|
|
506
|
+
walletV2ForwarderFactoryAddress: string;
|
|
507
|
+
walletV2ForwarderImplementationAddress: string;
|
|
508
|
+
walletV4ForwarderFactoryAddress: string;
|
|
509
|
+
walletV4ForwarderImplementationAddress: string;
|
|
510
|
+
nativeCoinOperationHashPrefix: string;
|
|
511
|
+
tokenOperationHashPrefix: string;
|
|
512
|
+
walletFactoryAddress: string;
|
|
513
|
+
walletImplementationAddress: string;
|
|
514
|
+
walletV2FactoryAddress: string;
|
|
515
|
+
walletV2ImplementationAddress: string;
|
|
516
|
+
walletV4FactoryAddress: string;
|
|
517
|
+
walletV4ImplementationAddress: string;
|
|
345
518
|
}
|
|
346
519
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
347
520
|
name: string;
|
|
@@ -358,6 +531,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
358
531
|
batcherContractAddress: string;
|
|
359
532
|
forwarderFactoryAddress: string;
|
|
360
533
|
forwarderImplementationAddress: string;
|
|
534
|
+
nativeCoinOperationHashPrefix: string;
|
|
535
|
+
tokenOperationHashPrefix: string;
|
|
361
536
|
}
|
|
362
537
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
363
538
|
name: string;
|
|
@@ -374,6 +549,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
374
549
|
batcherContractAddress: string;
|
|
375
550
|
forwarderFactoryAddress: string;
|
|
376
551
|
forwarderImplementationAddress: string;
|
|
552
|
+
nativeCoinOperationHashPrefix: string;
|
|
553
|
+
tokenOperationHashPrefix: string;
|
|
377
554
|
}
|
|
378
555
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
379
556
|
name: string;
|
|
@@ -385,6 +562,8 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
385
562
|
batcherContractAddress: string;
|
|
386
563
|
forwarderFactoryAddress: string;
|
|
387
564
|
forwarderImplementationAddress: string;
|
|
565
|
+
nativeCoinOperationHashPrefix: string;
|
|
566
|
+
tokenOperationHashPrefix: string;
|
|
388
567
|
}
|
|
389
568
|
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
390
569
|
name: string;
|
|
@@ -396,6 +575,33 @@ declare class Holesky extends Testnet implements EthereumNetwork {
|
|
|
396
575
|
batcherContractAddress: string;
|
|
397
576
|
forwarderFactoryAddress: string;
|
|
398
577
|
forwarderImplementationAddress: string;
|
|
578
|
+
nativeCoinOperationHashPrefix: string;
|
|
579
|
+
tokenOperationHashPrefix: string;
|
|
580
|
+
walletV4ForwarderFactoryAddress: string;
|
|
581
|
+
walletV4ForwarderImplementationAddress: string;
|
|
582
|
+
}
|
|
583
|
+
declare class Hoodi extends Testnet implements EthereumNetwork {
|
|
584
|
+
name: string;
|
|
585
|
+
family: CoinFamily;
|
|
586
|
+
explorerUrl: string;
|
|
587
|
+
accountExplorerUrl: string;
|
|
588
|
+
blockExplorerUrl: string;
|
|
589
|
+
chainId: number;
|
|
590
|
+
batcherContractAddress: string;
|
|
591
|
+
forwarderFactoryAddress: string;
|
|
592
|
+
forwarderImplementationAddress: string;
|
|
593
|
+
walletV2ForwarderFactoryAddress: string;
|
|
594
|
+
walletV2ForwarderImplementationAddress: string;
|
|
595
|
+
walletV4ForwarderFactoryAddress: string;
|
|
596
|
+
walletV4ForwarderImplementationAddress: string;
|
|
597
|
+
walletFactoryAddress: string;
|
|
598
|
+
walletImplementationAddress: string;
|
|
599
|
+
walletV2FactoryAddress: string;
|
|
600
|
+
walletV2ImplementationAddress: string;
|
|
601
|
+
walletV4FactoryAddress: string;
|
|
602
|
+
walletV4ImplementationAddress: string;
|
|
603
|
+
nativeCoinOperationHashPrefix: string;
|
|
604
|
+
tokenOperationHashPrefix: string;
|
|
399
605
|
}
|
|
400
606
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
401
607
|
name: string;
|
|
@@ -403,6 +609,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
403
609
|
explorerUrl: string;
|
|
404
610
|
accountExplorerUrl: string;
|
|
405
611
|
chainId: number;
|
|
612
|
+
nativeCoinOperationHashPrefix: string;
|
|
613
|
+
tokenOperationHashPrefix: string;
|
|
406
614
|
}
|
|
407
615
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
408
616
|
name: string;
|
|
@@ -410,6 +618,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
410
618
|
explorerUrl: string;
|
|
411
619
|
accountExplorerUrl: string;
|
|
412
620
|
chainId: number;
|
|
621
|
+
nativeCoinOperationHashPrefix: string;
|
|
622
|
+
tokenOperationHashPrefix: string;
|
|
413
623
|
}
|
|
414
624
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
415
625
|
name: string;
|
|
@@ -459,6 +669,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
459
669
|
explorerUrl: string;
|
|
460
670
|
accountExplorerUrl: string;
|
|
461
671
|
chainId: number;
|
|
672
|
+
nativeCoinOperationHashPrefix: string;
|
|
673
|
+
tokenOperationHashPrefix: string;
|
|
462
674
|
}
|
|
463
675
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
464
676
|
name: string;
|
|
@@ -466,6 +678,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
466
678
|
explorerUrl: string;
|
|
467
679
|
accountExplorerUrl: string;
|
|
468
680
|
chainId: number;
|
|
681
|
+
nativeCoinOperationHashPrefix: string;
|
|
682
|
+
tokenOperationHashPrefix: string;
|
|
469
683
|
}
|
|
470
684
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
471
685
|
name: string;
|
|
@@ -597,25 +811,97 @@ declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
|
597
811
|
family: CoinFamily;
|
|
598
812
|
explorerUrl: string;
|
|
599
813
|
}
|
|
600
|
-
declare class
|
|
814
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
601
815
|
name: string;
|
|
602
816
|
family: CoinFamily;
|
|
603
817
|
explorerUrl: string;
|
|
604
818
|
}
|
|
605
|
-
declare class
|
|
819
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
606
820
|
name: string;
|
|
607
821
|
family: CoinFamily;
|
|
608
822
|
explorerUrl: string;
|
|
609
823
|
}
|
|
610
|
-
declare class
|
|
824
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
611
825
|
name: string;
|
|
612
826
|
family: CoinFamily;
|
|
613
|
-
explorerUrl:
|
|
827
|
+
explorerUrl: string;
|
|
614
828
|
}
|
|
615
|
-
declare class
|
|
829
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
616
830
|
name: string;
|
|
617
831
|
family: CoinFamily;
|
|
618
|
-
explorerUrl:
|
|
832
|
+
explorerUrl: string;
|
|
833
|
+
}
|
|
834
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
835
|
+
name: string;
|
|
836
|
+
family: CoinFamily;
|
|
837
|
+
explorerUrl: string;
|
|
838
|
+
}
|
|
839
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
840
|
+
name: string;
|
|
841
|
+
family: CoinFamily;
|
|
842
|
+
explorerUrl: string;
|
|
843
|
+
}
|
|
844
|
+
declare class Mantra extends Mainnet implements CosmosNetwork {
|
|
845
|
+
name: string;
|
|
846
|
+
family: CoinFamily;
|
|
847
|
+
explorerUrl: string;
|
|
848
|
+
addressPrefix: string;
|
|
849
|
+
validatorPrefix: string;
|
|
850
|
+
denom: string;
|
|
851
|
+
gasAmount: string;
|
|
852
|
+
gasLimit: number;
|
|
853
|
+
validDenoms: string[];
|
|
854
|
+
}
|
|
855
|
+
declare class MantraTestnet extends Testnet implements CosmosNetwork {
|
|
856
|
+
name: string;
|
|
857
|
+
family: CoinFamily;
|
|
858
|
+
explorerUrl: string;
|
|
859
|
+
addressPrefix: string;
|
|
860
|
+
validatorPrefix: string;
|
|
861
|
+
denom: string;
|
|
862
|
+
gasAmount: string;
|
|
863
|
+
gasLimit: number;
|
|
864
|
+
validDenoms: string[];
|
|
865
|
+
}
|
|
866
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
867
|
+
name: string;
|
|
868
|
+
family: CoinFamily;
|
|
869
|
+
explorerUrl: string;
|
|
870
|
+
}
|
|
871
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
872
|
+
name: string;
|
|
873
|
+
family: CoinFamily;
|
|
874
|
+
explorerUrl: string;
|
|
875
|
+
}
|
|
876
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
877
|
+
name: string;
|
|
878
|
+
family: CoinFamily;
|
|
879
|
+
explorerUrl: string;
|
|
880
|
+
}
|
|
881
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
882
|
+
name: string;
|
|
883
|
+
family: CoinFamily;
|
|
884
|
+
explorerUrl: string;
|
|
885
|
+
}
|
|
886
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
887
|
+
name: string;
|
|
888
|
+
family: CoinFamily;
|
|
889
|
+
explorerUrl: string;
|
|
890
|
+
}
|
|
891
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
892
|
+
name: string;
|
|
893
|
+
family: CoinFamily;
|
|
894
|
+
explorerUrl: string;
|
|
895
|
+
}
|
|
896
|
+
declare class Asi extends Mainnet implements AccountNetwork {
|
|
897
|
+
name: string;
|
|
898
|
+
family: CoinFamily;
|
|
899
|
+
explorerUrl: string;
|
|
900
|
+
}
|
|
901
|
+
declare class AsiTestnet extends Testnet implements AccountNetwork {
|
|
902
|
+
name: string;
|
|
903
|
+
family: CoinFamily;
|
|
904
|
+
explorerUrl: string;
|
|
619
905
|
}
|
|
620
906
|
declare class Islm extends Mainnet implements AccountNetwork {
|
|
621
907
|
name: string;
|
|
@@ -661,9 +947,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
661
947
|
family: CoinFamily;
|
|
662
948
|
explorerUrl: undefined;
|
|
663
949
|
}
|
|
950
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
951
|
+
name: string;
|
|
952
|
+
family: CoinFamily;
|
|
953
|
+
explorerUrl: string;
|
|
954
|
+
}
|
|
955
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
956
|
+
name: string;
|
|
957
|
+
family: CoinFamily;
|
|
958
|
+
explorerUrl: string;
|
|
959
|
+
specName: SubstrateSpecNameType;
|
|
960
|
+
genesisHash: string;
|
|
961
|
+
specVersion: number;
|
|
962
|
+
chainName: string;
|
|
963
|
+
txVersion: number;
|
|
964
|
+
}
|
|
664
965
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
665
966
|
name: string;
|
|
666
967
|
family: CoinFamily;
|
|
968
|
+
accountExplorerUrl: string;
|
|
667
969
|
explorerUrl: string;
|
|
668
970
|
maxFeeLimit: string;
|
|
669
971
|
contractCallFeeLimit: string;
|
|
@@ -671,6 +973,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
671
973
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
672
974
|
name: string;
|
|
673
975
|
family: CoinFamily;
|
|
976
|
+
accountExplorerUrl: string;
|
|
674
977
|
explorerUrl: string;
|
|
675
978
|
maxFeeLimit: string;
|
|
676
979
|
contractCallFeeLimit: string;
|
|
@@ -689,11 +992,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
689
992
|
name: string;
|
|
690
993
|
family: CoinFamily;
|
|
691
994
|
explorerUrl: string;
|
|
995
|
+
accountExplorerUrl: string;
|
|
692
996
|
}
|
|
693
997
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
694
998
|
name: string;
|
|
695
999
|
family: CoinFamily;
|
|
696
1000
|
explorerUrl: string;
|
|
1001
|
+
accountExplorerUrl: string;
|
|
697
1002
|
}
|
|
698
1003
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
699
1004
|
name: string;
|
|
@@ -732,6 +1037,10 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
732
1037
|
walletFactoryAddress: string;
|
|
733
1038
|
walletImplementationAddress: string;
|
|
734
1039
|
batcherContractAddress: string;
|
|
1040
|
+
nativeCoinOperationHashPrefix: string;
|
|
1041
|
+
tokenOperationHashPrefix: string;
|
|
1042
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1043
|
+
walletV4ForwarderImplementationAddress: string;
|
|
735
1044
|
}
|
|
736
1045
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
737
1046
|
name: string;
|
|
@@ -744,6 +1053,10 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
744
1053
|
walletFactoryAddress: string;
|
|
745
1054
|
walletImplementationAddress: string;
|
|
746
1055
|
batcherContractAddress: string;
|
|
1056
|
+
nativeCoinOperationHashPrefix: string;
|
|
1057
|
+
tokenOperationHashPrefix: string;
|
|
1058
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1059
|
+
walletV4ForwarderImplementationAddress: string;
|
|
747
1060
|
}
|
|
748
1061
|
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
749
1062
|
name: string;
|
|
@@ -751,6 +1064,15 @@ declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
|
751
1064
|
explorerUrl: string;
|
|
752
1065
|
accountExplorerUrl: string;
|
|
753
1066
|
chainId: number;
|
|
1067
|
+
nativeCoinOperationHashPrefix: string;
|
|
1068
|
+
tokenOperationHashPrefix: string;
|
|
1069
|
+
forwarderFactoryAddress: string;
|
|
1070
|
+
forwarderImplementationAddress: string;
|
|
1071
|
+
walletFactoryAddress: string;
|
|
1072
|
+
walletImplementationAddress: string;
|
|
1073
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1074
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1075
|
+
batcherContractAddress: string;
|
|
754
1076
|
}
|
|
755
1077
|
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
756
1078
|
name: string;
|
|
@@ -758,28 +1080,883 @@ declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
|
758
1080
|
explorerUrl: string;
|
|
759
1081
|
accountExplorerUrl: string;
|
|
760
1082
|
chainId: number;
|
|
1083
|
+
nativeCoinOperationHashPrefix: string;
|
|
1084
|
+
tokenOperationHashPrefix: string;
|
|
1085
|
+
forwarderFactoryAddress: string;
|
|
1086
|
+
forwarderImplementationAddress: string;
|
|
1087
|
+
walletFactoryAddress: string;
|
|
1088
|
+
walletImplementationAddress: string;
|
|
1089
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1090
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1091
|
+
batcherContractAddress: string;
|
|
1092
|
+
}
|
|
1093
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
1094
|
+
name: string;
|
|
1095
|
+
family: CoinFamily;
|
|
1096
|
+
explorerUrl: string;
|
|
1097
|
+
accountExplorerUrl: string;
|
|
1098
|
+
chainId: number;
|
|
1099
|
+
nativeCoinOperationHashPrefix: string;
|
|
1100
|
+
tokenOperationHashPrefix: string;
|
|
1101
|
+
}
|
|
1102
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
1103
|
+
name: string;
|
|
1104
|
+
family: CoinFamily;
|
|
1105
|
+
explorerUrl: string;
|
|
1106
|
+
accountExplorerUrl: string;
|
|
1107
|
+
chainId: number;
|
|
1108
|
+
nativeCoinOperationHashPrefix: string;
|
|
1109
|
+
tokenOperationHashPrefix: string;
|
|
1110
|
+
forwarderFactoryAddress: string;
|
|
1111
|
+
forwarderImplementationAddress: string;
|
|
1112
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1113
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1114
|
+
walletFactoryAddress: string;
|
|
1115
|
+
walletImplementationAddress: string;
|
|
1116
|
+
}
|
|
1117
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
1118
|
+
name: string;
|
|
1119
|
+
family: CoinFamily;
|
|
1120
|
+
explorerUrl: string;
|
|
1121
|
+
accountExplorerUrl: string;
|
|
1122
|
+
chainId: number;
|
|
1123
|
+
nativeCoinOperationHashPrefix: string;
|
|
1124
|
+
tokenOperationHashPrefix: string;
|
|
1125
|
+
batcherContractAddress: string;
|
|
1126
|
+
forwarderFactoryAddress: string;
|
|
1127
|
+
forwarderImplementationAddress: string;
|
|
1128
|
+
}
|
|
1129
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1130
|
+
name: string;
|
|
1131
|
+
family: CoinFamily;
|
|
1132
|
+
explorerUrl: string;
|
|
1133
|
+
accountExplorerUrl: string;
|
|
1134
|
+
chainId: number;
|
|
1135
|
+
nativeCoinOperationHashPrefix: string;
|
|
1136
|
+
tokenOperationHashPrefix: string;
|
|
1137
|
+
batcherContractAddress: string;
|
|
1138
|
+
forwarderFactoryAddress: string;
|
|
1139
|
+
forwarderImplementationAddress: string;
|
|
1140
|
+
}
|
|
1141
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1142
|
+
name: string;
|
|
1143
|
+
family: CoinFamily;
|
|
1144
|
+
explorerUrl: string;
|
|
1145
|
+
accountExplorerUrl: string;
|
|
1146
|
+
chainId: number;
|
|
1147
|
+
nativeCoinOperationHashPrefix: string;
|
|
1148
|
+
batcherContractAddress: string;
|
|
1149
|
+
forwarderFactoryAddress: string;
|
|
1150
|
+
forwarderImplementationAddress: string;
|
|
1151
|
+
}
|
|
1152
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1153
|
+
name: string;
|
|
1154
|
+
family: CoinFamily;
|
|
1155
|
+
explorerUrl: string;
|
|
1156
|
+
accountExplorerUrl: string;
|
|
1157
|
+
chainId: number;
|
|
1158
|
+
nativeCoinOperationHashPrefix: string;
|
|
1159
|
+
batcherContractAddress: string;
|
|
1160
|
+
forwarderFactoryAddress: string;
|
|
1161
|
+
forwarderImplementationAddress: string;
|
|
1162
|
+
}
|
|
1163
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1164
|
+
name: string;
|
|
1165
|
+
family: CoinFamily;
|
|
1166
|
+
explorerUrl: string;
|
|
1167
|
+
accountExplorerUrl: string;
|
|
1168
|
+
chainId: number;
|
|
1169
|
+
nativeCoinOperationHashPrefix: string;
|
|
1170
|
+
batcherContractAddress: string;
|
|
1171
|
+
forwarderFactoryAddress: string;
|
|
1172
|
+
forwarderImplementationAddress: string;
|
|
1173
|
+
}
|
|
1174
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1175
|
+
name: string;
|
|
1176
|
+
family: CoinFamily;
|
|
1177
|
+
explorerUrl: string;
|
|
1178
|
+
accountExplorerUrl: string;
|
|
1179
|
+
chainId: number;
|
|
1180
|
+
nativeCoinOperationHashPrefix: string;
|
|
1181
|
+
batcherContractAddress: string;
|
|
1182
|
+
forwarderFactoryAddress: string;
|
|
1183
|
+
forwarderImplementationAddress: string;
|
|
1184
|
+
}
|
|
1185
|
+
declare class IP extends Mainnet implements EthereumNetwork {
|
|
1186
|
+
name: string;
|
|
1187
|
+
family: CoinFamily;
|
|
1188
|
+
explorerUrl: string;
|
|
1189
|
+
accountExplorerUrl: string;
|
|
1190
|
+
chainId: number;
|
|
1191
|
+
nativeCoinOperationHashPrefix: string;
|
|
1192
|
+
}
|
|
1193
|
+
declare class IPTestnet extends Testnet implements EthereumNetwork {
|
|
1194
|
+
name: string;
|
|
1195
|
+
family: CoinFamily;
|
|
1196
|
+
explorerUrl: string;
|
|
1197
|
+
accountExplorerUrl: string;
|
|
1198
|
+
chainId: number;
|
|
1199
|
+
nativeCoinOperationHashPrefix: string;
|
|
1200
|
+
}
|
|
1201
|
+
declare class ApeChain 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 ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1210
|
+
name: string;
|
|
1211
|
+
family: CoinFamily;
|
|
1212
|
+
explorerUrl: string;
|
|
1213
|
+
accountExplorerUrl: string;
|
|
1214
|
+
chainId: number;
|
|
1215
|
+
nativeCoinOperationHashPrefix: string;
|
|
1216
|
+
forwarderFactoryAddress: string;
|
|
1217
|
+
forwarderImplementationAddress: string;
|
|
1218
|
+
walletFactoryAddress: string;
|
|
1219
|
+
walletImplementationAddress: string;
|
|
1220
|
+
batcherContractAddress: string;
|
|
1221
|
+
}
|
|
1222
|
+
declare class Pharos extends Mainnet implements EthereumNetwork {
|
|
1223
|
+
name: string;
|
|
1224
|
+
family: CoinFamily;
|
|
1225
|
+
explorerUrl: string;
|
|
1226
|
+
accountExplorerUrl: string;
|
|
1227
|
+
chainId: number;
|
|
1228
|
+
nativeCoinOperationHashPrefix: string;
|
|
1229
|
+
}
|
|
1230
|
+
declare class PharosTestnet extends Testnet implements EthereumNetwork {
|
|
1231
|
+
name: string;
|
|
1232
|
+
family: CoinFamily;
|
|
1233
|
+
explorerUrl: string;
|
|
1234
|
+
accountExplorerUrl: string;
|
|
1235
|
+
chainId: number;
|
|
1236
|
+
nativeCoinOperationHashPrefix: string;
|
|
1237
|
+
forwarderFactoryAddress: string;
|
|
1238
|
+
forwarderImplementationAddress: string;
|
|
1239
|
+
walletFactoryAddress: string;
|
|
1240
|
+
walletImplementationAddress: string;
|
|
1241
|
+
batcherContractAddress: string;
|
|
1242
|
+
}
|
|
1243
|
+
declare class Creditcoin extends Mainnet implements EthereumNetwork {
|
|
1244
|
+
name: string;
|
|
1245
|
+
family: CoinFamily;
|
|
1246
|
+
explorerUrl: string;
|
|
1247
|
+
accountExplorerUrl: string;
|
|
1248
|
+
chainId: number;
|
|
1249
|
+
nativeCoinOperationHashPrefix: string;
|
|
1250
|
+
forwarderFactoryAddress: string;
|
|
1251
|
+
forwarderImplementationAddress: string;
|
|
1252
|
+
walletFactoryAddress: string;
|
|
1253
|
+
walletImplementationAddress: string;
|
|
1254
|
+
batcherContractAddress: string;
|
|
1255
|
+
}
|
|
1256
|
+
declare class Plasma extends Mainnet implements EthereumNetwork {
|
|
1257
|
+
name: string;
|
|
1258
|
+
family: CoinFamily;
|
|
1259
|
+
explorerUrl: string;
|
|
1260
|
+
accountExplorerUrl: string;
|
|
1261
|
+
chainId: number;
|
|
1262
|
+
nativeCoinOperationHashPrefix: string;
|
|
1263
|
+
}
|
|
1264
|
+
declare class PlasmaTestnet extends Testnet implements EthereumNetwork {
|
|
1265
|
+
name: string;
|
|
1266
|
+
family: CoinFamily;
|
|
1267
|
+
explorerUrl: string;
|
|
1268
|
+
accountExplorerUrl: string;
|
|
1269
|
+
chainId: number;
|
|
1270
|
+
nativeCoinOperationHashPrefix: string;
|
|
1271
|
+
}
|
|
1272
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1273
|
+
name: string;
|
|
1274
|
+
family: CoinFamily;
|
|
1275
|
+
explorerUrl: string;
|
|
1276
|
+
accountExplorerUrl: string;
|
|
1277
|
+
chainId: number;
|
|
1278
|
+
nativeCoinOperationHashPrefix: string;
|
|
1279
|
+
forwarderFactoryAddress: string;
|
|
1280
|
+
forwarderImplementationAddress: string;
|
|
1281
|
+
walletFactoryAddress: string;
|
|
1282
|
+
walletImplementationAddress: string;
|
|
1283
|
+
batcherContractAddress: string;
|
|
1284
|
+
}
|
|
1285
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1286
|
+
name: string;
|
|
1287
|
+
family: CoinFamily;
|
|
1288
|
+
explorerUrl: string;
|
|
1289
|
+
accountExplorerUrl: string;
|
|
1290
|
+
chainId: number;
|
|
1291
|
+
nativeCoinOperationHashPrefix: string;
|
|
1292
|
+
forwarderFactoryAddress: string;
|
|
1293
|
+
forwarderImplementationAddress: string;
|
|
1294
|
+
walletFactoryAddress: string;
|
|
1295
|
+
walletImplementationAddress: string;
|
|
1296
|
+
batcherContractAddress: string;
|
|
1297
|
+
}
|
|
1298
|
+
declare class KavaEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1299
|
+
name: string;
|
|
1300
|
+
family: CoinFamily;
|
|
1301
|
+
explorerUrl: string;
|
|
1302
|
+
accountExplorerUrl: string;
|
|
1303
|
+
chainId: number;
|
|
1304
|
+
nativeCoinOperationHashPrefix: string;
|
|
1305
|
+
}
|
|
1306
|
+
declare class KavaEVM extends Mainnet implements EthereumNetwork {
|
|
1307
|
+
name: string;
|
|
1308
|
+
family: CoinFamily;
|
|
1309
|
+
explorerUrl: string;
|
|
1310
|
+
accountExplorerUrl: string;
|
|
1311
|
+
chainId: number;
|
|
1312
|
+
nativeCoinOperationHashPrefix: string;
|
|
1313
|
+
}
|
|
1314
|
+
declare class LineaETH extends Mainnet implements EthereumNetwork {
|
|
1315
|
+
name: string;
|
|
1316
|
+
family: CoinFamily;
|
|
1317
|
+
explorerUrl: string;
|
|
1318
|
+
accountExplorerUrl: string;
|
|
1319
|
+
chainId: number;
|
|
1320
|
+
nativeCoinOperationHashPrefix: string;
|
|
1321
|
+
}
|
|
1322
|
+
declare class LineaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1323
|
+
name: string;
|
|
1324
|
+
family: CoinFamily;
|
|
1325
|
+
explorerUrl: string;
|
|
1326
|
+
accountExplorerUrl: string;
|
|
1327
|
+
chainId: number;
|
|
1328
|
+
nativeCoinOperationHashPrefix: string;
|
|
1329
|
+
}
|
|
1330
|
+
declare class FluentETH extends Mainnet implements EthereumNetwork {
|
|
1331
|
+
name: string;
|
|
1332
|
+
family: CoinFamily;
|
|
1333
|
+
explorerUrl: string;
|
|
1334
|
+
accountExplorerUrl: string;
|
|
1335
|
+
chainId: number;
|
|
1336
|
+
nativeCoinOperationHashPrefix: string;
|
|
1337
|
+
}
|
|
1338
|
+
declare class FluentETHTestnet extends Testnet implements EthereumNetwork {
|
|
1339
|
+
name: string;
|
|
1340
|
+
family: CoinFamily;
|
|
1341
|
+
explorerUrl: string;
|
|
1342
|
+
accountExplorerUrl: string;
|
|
1343
|
+
chainId: number;
|
|
1344
|
+
nativeCoinOperationHashPrefix: string;
|
|
1345
|
+
}
|
|
1346
|
+
declare class Mantle extends Mainnet implements EthereumNetwork {
|
|
1347
|
+
name: string;
|
|
1348
|
+
family: CoinFamily;
|
|
1349
|
+
explorerUrl: string;
|
|
1350
|
+
accountExplorerUrl: string;
|
|
1351
|
+
chainId: number;
|
|
1352
|
+
nativeCoinOperationHashPrefix: string;
|
|
1353
|
+
}
|
|
1354
|
+
declare class MantleTestnet extends Testnet implements EthereumNetwork {
|
|
1355
|
+
name: string;
|
|
1356
|
+
family: CoinFamily;
|
|
1357
|
+
explorerUrl: string;
|
|
1358
|
+
accountExplorerUrl: string;
|
|
1359
|
+
chainId: number;
|
|
1360
|
+
nativeCoinOperationHashPrefix: string;
|
|
1361
|
+
}
|
|
1362
|
+
declare class JovayETH extends Mainnet implements EthereumNetwork {
|
|
1363
|
+
name: string;
|
|
1364
|
+
family: CoinFamily;
|
|
1365
|
+
explorerUrl: string;
|
|
1366
|
+
accountExplorerUrl: string;
|
|
1367
|
+
chainId: number;
|
|
1368
|
+
nativeCoinOperationHashPrefix: string;
|
|
1369
|
+
}
|
|
1370
|
+
declare class JovayETHTestnet extends Testnet implements EthereumNetwork {
|
|
1371
|
+
name: string;
|
|
1372
|
+
family: CoinFamily;
|
|
1373
|
+
explorerUrl: string;
|
|
1374
|
+
accountExplorerUrl: string;
|
|
1375
|
+
chainId: number;
|
|
1376
|
+
nativeCoinOperationHashPrefix: string;
|
|
1377
|
+
}
|
|
1378
|
+
declare class Xlayer extends Mainnet implements EthereumNetwork {
|
|
1379
|
+
name: string;
|
|
1380
|
+
family: CoinFamily;
|
|
1381
|
+
explorerUrl: string;
|
|
1382
|
+
accountExplorerUrl: string;
|
|
1383
|
+
chainId: number;
|
|
1384
|
+
nativeCoinOperationHashPrefix: string;
|
|
1385
|
+
}
|
|
1386
|
+
declare class XlayerTestnet extends Testnet implements EthereumNetwork {
|
|
1387
|
+
name: string;
|
|
1388
|
+
family: CoinFamily;
|
|
1389
|
+
explorerUrl: string;
|
|
1390
|
+
accountExplorerUrl: string;
|
|
1391
|
+
chainId: number;
|
|
1392
|
+
nativeCoinOperationHashPrefix: string;
|
|
1393
|
+
}
|
|
1394
|
+
declare class Morph extends Mainnet implements EthereumNetwork {
|
|
1395
|
+
name: string;
|
|
1396
|
+
family: CoinFamily;
|
|
1397
|
+
explorerUrl: string;
|
|
1398
|
+
accountExplorerUrl: string;
|
|
1399
|
+
chainId: number;
|
|
1400
|
+
nativeCoinOperationHashPrefix: string;
|
|
1401
|
+
}
|
|
1402
|
+
declare class MorphTestnet extends Testnet implements EthereumNetwork {
|
|
1403
|
+
name: string;
|
|
1404
|
+
family: CoinFamily;
|
|
1405
|
+
explorerUrl: string;
|
|
1406
|
+
accountExplorerUrl: string;
|
|
1407
|
+
chainId: number;
|
|
1408
|
+
nativeCoinOperationHashPrefix: string;
|
|
1409
|
+
}
|
|
1410
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1411
|
+
name: string;
|
|
1412
|
+
family: CoinFamily;
|
|
1413
|
+
explorerUrl: string;
|
|
1414
|
+
accountExplorerUrl: string;
|
|
1415
|
+
chainId: number;
|
|
1416
|
+
nativeCoinOperationHashPrefix: string;
|
|
1417
|
+
forwarderFactoryAddress: string;
|
|
1418
|
+
forwarderImplementationAddress: string;
|
|
1419
|
+
walletFactoryAddress: string;
|
|
1420
|
+
walletImplementationAddress: string;
|
|
1421
|
+
batcherContractAddress: string;
|
|
1422
|
+
}
|
|
1423
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1424
|
+
name: string;
|
|
1425
|
+
family: CoinFamily;
|
|
1426
|
+
explorerUrl: string;
|
|
1427
|
+
accountExplorerUrl: string;
|
|
1428
|
+
chainId: number;
|
|
1429
|
+
nativeCoinOperationHashPrefix: string;
|
|
1430
|
+
}
|
|
1431
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1432
|
+
name: string;
|
|
1433
|
+
family: CoinFamily;
|
|
1434
|
+
explorerUrl: string;
|
|
1435
|
+
accountExplorerUrl: string;
|
|
1436
|
+
chainId: number;
|
|
1437
|
+
nativeCoinOperationHashPrefix: string;
|
|
1438
|
+
walletFactoryAddress: string;
|
|
1439
|
+
batcherContractAddress: string;
|
|
1440
|
+
forwarderFactoryAddress: string;
|
|
1441
|
+
forwarderImplementationAddress: string;
|
|
1442
|
+
walletImplementationAddress: string;
|
|
1443
|
+
}
|
|
1444
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1445
|
+
name: string;
|
|
1446
|
+
family: CoinFamily;
|
|
1447
|
+
explorerUrl: string;
|
|
1448
|
+
accountExplorerUrl: string;
|
|
1449
|
+
chainId: number;
|
|
1450
|
+
nativeCoinOperationHashPrefix: string;
|
|
1451
|
+
}
|
|
1452
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1453
|
+
name: string;
|
|
1454
|
+
family: CoinFamily;
|
|
1455
|
+
explorerUrl: string;
|
|
1456
|
+
accountExplorerUrl: string;
|
|
1457
|
+
chainId: number;
|
|
1458
|
+
nativeCoinOperationHashPrefix: string;
|
|
1459
|
+
walletFactoryAddress: string;
|
|
1460
|
+
batcherContractAddress: string;
|
|
1461
|
+
forwarderFactoryAddress: string;
|
|
1462
|
+
forwarderImplementationAddress: string;
|
|
1463
|
+
walletImplementationAddress: string;
|
|
1464
|
+
}
|
|
1465
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1466
|
+
name: string;
|
|
1467
|
+
family: CoinFamily;
|
|
1468
|
+
explorerUrl: string;
|
|
1469
|
+
accountExplorerUrl: string;
|
|
1470
|
+
chainId: number;
|
|
1471
|
+
nativeCoinOperationHashPrefix: string;
|
|
1472
|
+
}
|
|
1473
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1474
|
+
name: string;
|
|
1475
|
+
family: CoinFamily;
|
|
1476
|
+
explorerUrl: string;
|
|
1477
|
+
accountExplorerUrl: string;
|
|
1478
|
+
chainId: number;
|
|
1479
|
+
nativeCoinOperationHashPrefix: string;
|
|
1480
|
+
walletFactoryAddress: string;
|
|
1481
|
+
batcherContractAddress: string;
|
|
1482
|
+
forwarderFactoryAddress: string;
|
|
1483
|
+
forwarderImplementationAddress: string;
|
|
1484
|
+
walletImplementationAddress: string;
|
|
1485
|
+
}
|
|
1486
|
+
declare class Og extends Mainnet implements EthereumNetwork {
|
|
1487
|
+
name: string;
|
|
1488
|
+
family: CoinFamily;
|
|
1489
|
+
explorerUrl: string;
|
|
1490
|
+
accountExplorerUrl: string;
|
|
1491
|
+
chainId: number;
|
|
1492
|
+
nativeCoinOperationHashPrefix: string;
|
|
1493
|
+
}
|
|
1494
|
+
declare class OgTestnet extends Testnet implements EthereumNetwork {
|
|
1495
|
+
name: string;
|
|
1496
|
+
family: CoinFamily;
|
|
1497
|
+
explorerUrl: string;
|
|
1498
|
+
accountExplorerUrl: string;
|
|
1499
|
+
chainId: number;
|
|
1500
|
+
nativeCoinOperationHashPrefix: string;
|
|
1501
|
+
}
|
|
1502
|
+
declare class Xdc 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 XdcTestnet 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 Wemix extends Mainnet implements EthereumNetwork {
|
|
1525
|
+
name: string;
|
|
1526
|
+
family: CoinFamily;
|
|
1527
|
+
explorerUrl: string;
|
|
1528
|
+
accountExplorerUrl: string;
|
|
1529
|
+
chainId: number;
|
|
1530
|
+
nativeCoinOperationHashPrefix: string;
|
|
1531
|
+
batcherContractAddress: string;
|
|
1532
|
+
forwarderFactoryAddress: string;
|
|
1533
|
+
forwarderImplementationAddress: string;
|
|
1534
|
+
}
|
|
1535
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1536
|
+
name: string;
|
|
1537
|
+
family: CoinFamily;
|
|
1538
|
+
explorerUrl: string;
|
|
1539
|
+
accountExplorerUrl: string;
|
|
1540
|
+
chainId: number;
|
|
1541
|
+
nativeCoinOperationHashPrefix: string;
|
|
1542
|
+
batcherContractAddress: string;
|
|
1543
|
+
forwarderFactoryAddress: string;
|
|
1544
|
+
forwarderImplementationAddress: string;
|
|
1545
|
+
}
|
|
1546
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1547
|
+
name: string;
|
|
1548
|
+
family: CoinFamily;
|
|
1549
|
+
explorerUrl: string;
|
|
1550
|
+
accountExplorerUrl: string;
|
|
1551
|
+
chainId: number;
|
|
1552
|
+
nativeCoinOperationHashPrefix: string;
|
|
1553
|
+
walletFactoryAddress: string;
|
|
1554
|
+
batcherContractAddress: string;
|
|
1555
|
+
forwarderFactoryAddress: string;
|
|
1556
|
+
forwarderImplementationAddress: string;
|
|
1557
|
+
walletImplementationAddress: string;
|
|
1558
|
+
}
|
|
1559
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1560
|
+
name: string;
|
|
1561
|
+
family: CoinFamily;
|
|
1562
|
+
explorerUrl: string;
|
|
1563
|
+
chainId: number;
|
|
1564
|
+
nativeCoinOperationHashPrefix: string;
|
|
1565
|
+
walletImplementationAddress: string;
|
|
1566
|
+
batcherContractAddress: string;
|
|
1567
|
+
forwarderFactoryAddress: string;
|
|
1568
|
+
forwarderImplementationAddress: string;
|
|
1569
|
+
}
|
|
1570
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1571
|
+
name: string;
|
|
1572
|
+
family: CoinFamily;
|
|
1573
|
+
explorerUrl: string;
|
|
1574
|
+
accountExplorerUrl: string;
|
|
1575
|
+
chainId: number;
|
|
1576
|
+
nativeCoinOperationHashPrefix: string;
|
|
1577
|
+
walletImplementationAddress: string;
|
|
1578
|
+
batcherContractAddress: string;
|
|
1579
|
+
forwarderFactoryAddress: string;
|
|
1580
|
+
forwarderImplementationAddress: string;
|
|
1581
|
+
}
|
|
1582
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1583
|
+
name: string;
|
|
1584
|
+
family: CoinFamily;
|
|
1585
|
+
explorerUrl: string;
|
|
1586
|
+
accountExplorerUrl: string;
|
|
1587
|
+
chainId: number;
|
|
1588
|
+
nativeCoinOperationHashPrefix: string;
|
|
1589
|
+
batcherContractAddress: string;
|
|
1590
|
+
forwarderFactoryAddress: string;
|
|
1591
|
+
forwarderImplementationAddress: string;
|
|
1592
|
+
walletImplementationAddress: string;
|
|
1593
|
+
}
|
|
1594
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1595
|
+
name: string;
|
|
1596
|
+
family: CoinFamily;
|
|
1597
|
+
explorerUrl: string;
|
|
1598
|
+
accountExplorerUrl: string;
|
|
1599
|
+
chainId: number;
|
|
1600
|
+
nativeCoinOperationHashPrefix: string;
|
|
1601
|
+
walletImplementationAddress: string;
|
|
1602
|
+
walletFactoryAddress: string;
|
|
1603
|
+
batcherContractAddress: string;
|
|
1604
|
+
forwarderFactoryAddress: string;
|
|
1605
|
+
forwarderImplementationAddress: string;
|
|
1606
|
+
}
|
|
1607
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1608
|
+
name: string;
|
|
1609
|
+
family: CoinFamily;
|
|
1610
|
+
explorerUrl: string;
|
|
1611
|
+
accountExplorerUrl: string;
|
|
1612
|
+
chainId: number;
|
|
1613
|
+
nativeCoinOperationHashPrefix: string;
|
|
1614
|
+
walletFactoryAddress: string;
|
|
1615
|
+
batcherContractAddress: string;
|
|
1616
|
+
forwarderFactoryAddress: string;
|
|
1617
|
+
forwarderImplementationAddress: string;
|
|
1618
|
+
walletImplementationAddress: string;
|
|
1619
|
+
}
|
|
1620
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1621
|
+
name: string;
|
|
1622
|
+
family: CoinFamily;
|
|
1623
|
+
explorerUrl: string;
|
|
1624
|
+
accountExplorerUrl: string;
|
|
1625
|
+
chainId: number;
|
|
1626
|
+
nativeCoinOperationHashPrefix: string;
|
|
1627
|
+
}
|
|
1628
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1629
|
+
name: string;
|
|
1630
|
+
family: CoinFamily;
|
|
1631
|
+
explorerUrl: string;
|
|
1632
|
+
accountExplorerUrl: string;
|
|
1633
|
+
chainId: number;
|
|
1634
|
+
nativeCoinOperationHashPrefix: string;
|
|
1635
|
+
walletFactoryAddress: string;
|
|
1636
|
+
batcherContractAddress: string;
|
|
1637
|
+
forwarderFactoryAddress: string;
|
|
1638
|
+
forwarderImplementationAddress: string;
|
|
1639
|
+
walletImplementationAddress: string;
|
|
1640
|
+
}
|
|
1641
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1642
|
+
name: string;
|
|
1643
|
+
family: CoinFamily;
|
|
1644
|
+
explorerUrl: string;
|
|
1645
|
+
accountExplorerUrl: string;
|
|
1646
|
+
chainId: number;
|
|
1647
|
+
nativeCoinOperationHashPrefix: string;
|
|
1648
|
+
walletFactoryAddress: string;
|
|
1649
|
+
batcherContractAddress: string;
|
|
1650
|
+
forwarderFactoryAddress: string;
|
|
1651
|
+
forwarderImplementationAddress: string;
|
|
1652
|
+
walletImplementationAddress: string;
|
|
1653
|
+
}
|
|
1654
|
+
declare class Somi extends Mainnet implements EthereumNetwork {
|
|
1655
|
+
name: string;
|
|
1656
|
+
family: CoinFamily;
|
|
1657
|
+
explorerUrl: string;
|
|
1658
|
+
chainId: number;
|
|
1659
|
+
nativeCoinOperationHashPrefix: string;
|
|
1660
|
+
walletImplementationAddress: string;
|
|
1661
|
+
walletFactoryAddress: string;
|
|
1662
|
+
forwarderImplementationAddress: string;
|
|
1663
|
+
forwarderFactoryAddress: string;
|
|
1664
|
+
batcherContractAddress: string;
|
|
1665
|
+
}
|
|
1666
|
+
export declare class FlareP extends Mainnet implements FlareNetwork {
|
|
1667
|
+
assetId: string;
|
|
1668
|
+
name: string;
|
|
1669
|
+
family: CoinFamily;
|
|
1670
|
+
explorerUrl: string;
|
|
1671
|
+
accountExplorerUrl: string;
|
|
1672
|
+
blockchainID: string;
|
|
1673
|
+
cChainBlockchainID: string;
|
|
1674
|
+
networkID: number;
|
|
1675
|
+
hrp: string;
|
|
1676
|
+
alias: string;
|
|
1677
|
+
vm: string;
|
|
1678
|
+
txFee: string;
|
|
1679
|
+
maxImportFee: string;
|
|
1680
|
+
createSubnetTx: string;
|
|
1681
|
+
createChainTx: string;
|
|
1682
|
+
creationTxFee: string;
|
|
1683
|
+
minConsumption: string;
|
|
1684
|
+
maxConsumption: string;
|
|
1685
|
+
maxSupply: string;
|
|
1686
|
+
minStake: string;
|
|
1687
|
+
minStakeDuration: string;
|
|
1688
|
+
maxStakeDuration: string;
|
|
1689
|
+
minDelegationStake: string;
|
|
1690
|
+
minDelegationFee: string;
|
|
1691
|
+
}
|
|
1692
|
+
export declare class FlarePTestnet extends Testnet implements FlareNetwork {
|
|
1693
|
+
name: string;
|
|
1694
|
+
family: CoinFamily;
|
|
1695
|
+
explorerUrl: string;
|
|
1696
|
+
accountExplorerUrl: string;
|
|
1697
|
+
blockchainID: string;
|
|
1698
|
+
cChainBlockchainID: string;
|
|
1699
|
+
networkID: number;
|
|
1700
|
+
hrp: string;
|
|
1701
|
+
alias: string;
|
|
1702
|
+
assetId: string;
|
|
1703
|
+
vm: string;
|
|
1704
|
+
txFee: string;
|
|
1705
|
+
maxImportFee: string;
|
|
1706
|
+
createSubnetTx: string;
|
|
1707
|
+
createChainTx: string;
|
|
1708
|
+
creationTxFee: string;
|
|
1709
|
+
minConsumption: string;
|
|
1710
|
+
maxConsumption: string;
|
|
1711
|
+
maxSupply: string;
|
|
1712
|
+
minStake: string;
|
|
1713
|
+
minStakeDuration: string;
|
|
1714
|
+
maxStakeDuration: string;
|
|
1715
|
+
minDelegationStake: string;
|
|
1716
|
+
minDelegationFee: string;
|
|
1717
|
+
}
|
|
1718
|
+
export declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1719
|
+
name: string;
|
|
1720
|
+
family: CoinFamily;
|
|
1721
|
+
explorerUrl: string;
|
|
1722
|
+
accountExplorerUrl: string;
|
|
1723
|
+
chainId: number;
|
|
1724
|
+
nativeCoinOperationHashPrefix: string;
|
|
1725
|
+
walletFactoryAddress: string;
|
|
1726
|
+
walletImplementationAddress: string;
|
|
1727
|
+
batcherContractAddress: string;
|
|
1728
|
+
forwarderFactoryAddress: string;
|
|
1729
|
+
forwarderImplementationAddress: string;
|
|
1730
|
+
}
|
|
1731
|
+
export declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1732
|
+
name: string;
|
|
1733
|
+
family: CoinFamily;
|
|
1734
|
+
explorerUrl: string;
|
|
1735
|
+
accountExplorerUrl: string;
|
|
1736
|
+
chainId: number;
|
|
1737
|
+
nativeCoinOperationHashPrefix: string;
|
|
1738
|
+
walletFactoryAddress: string;
|
|
1739
|
+
walletImplementationAddress: string;
|
|
1740
|
+
batcherContractAddress: string;
|
|
1741
|
+
forwarderFactoryAddress: string;
|
|
1742
|
+
forwarderImplementationAddress: string;
|
|
1743
|
+
}
|
|
1744
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1745
|
+
name: string;
|
|
1746
|
+
family: CoinFamily;
|
|
1747
|
+
explorerUrl: string;
|
|
1748
|
+
accountExplorerUrl: string;
|
|
1749
|
+
chainId: number;
|
|
1750
|
+
nativeCoinOperationHashPrefix: string;
|
|
1751
|
+
batcherContractAddress: string;
|
|
1752
|
+
forwarderFactoryAddress: string;
|
|
1753
|
+
forwarderImplementationAddress: string;
|
|
1754
|
+
}
|
|
1755
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1756
|
+
name: string;
|
|
1757
|
+
family: CoinFamily;
|
|
1758
|
+
explorerUrl: string;
|
|
1759
|
+
accountExplorerUrl: string;
|
|
1760
|
+
chainId: number;
|
|
1761
|
+
nativeCoinOperationHashPrefix: string;
|
|
1762
|
+
batcherContractAddress: string;
|
|
1763
|
+
forwarderFactoryAddress: string;
|
|
1764
|
+
forwarderImplementationAddress: string;
|
|
1765
|
+
}
|
|
1766
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1767
|
+
name: string;
|
|
1768
|
+
family: CoinFamily;
|
|
1769
|
+
explorerUrl: string;
|
|
1770
|
+
accountExplorerUrl: string;
|
|
1771
|
+
chainId: number;
|
|
1772
|
+
nativeCoinOperationHashPrefix: string;
|
|
1773
|
+
tokenOperationHashPrefix: string;
|
|
1774
|
+
forwarderFactoryAddress: string;
|
|
1775
|
+
forwarderImplementationAddress: string;
|
|
1776
|
+
walletFactoryAddress: string;
|
|
1777
|
+
walletImplementationAddress: string;
|
|
1778
|
+
}
|
|
1779
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1780
|
+
name: string;
|
|
1781
|
+
family: CoinFamily;
|
|
1782
|
+
explorerUrl: string;
|
|
1783
|
+
accountExplorerUrl: string;
|
|
1784
|
+
chainId: number;
|
|
1785
|
+
nativeCoinOperationHashPrefix: string;
|
|
1786
|
+
tokenOperationHashPrefix: string;
|
|
1787
|
+
forwarderFactoryAddress: string;
|
|
1788
|
+
forwarderImplementationAddress: string;
|
|
1789
|
+
walletFactoryAddress: string;
|
|
1790
|
+
walletImplementationAddress: string;
|
|
1791
|
+
}
|
|
1792
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1793
|
+
name: string;
|
|
1794
|
+
family: CoinFamily;
|
|
1795
|
+
explorerUrl: string;
|
|
1796
|
+
specName: string;
|
|
1797
|
+
genesisHash: string;
|
|
1798
|
+
specVersion: number;
|
|
1799
|
+
chainName: string;
|
|
1800
|
+
txVersion: number;
|
|
1801
|
+
}
|
|
1802
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1803
|
+
name: string;
|
|
1804
|
+
family: CoinFamily;
|
|
1805
|
+
explorerUrl: string;
|
|
1806
|
+
specName: SubstrateSpecNameType;
|
|
1807
|
+
genesisHash: string;
|
|
1808
|
+
specVersion: number;
|
|
1809
|
+
chainName: string;
|
|
1810
|
+
txVersion: number;
|
|
1811
|
+
}
|
|
1812
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1813
|
+
name: string;
|
|
1814
|
+
family: CoinFamily;
|
|
1815
|
+
explorerUrl: string;
|
|
1816
|
+
accountExplorerUrl: string;
|
|
1817
|
+
chainId: number;
|
|
1818
|
+
forwarderFactoryAddress: string;
|
|
1819
|
+
forwarderImplementationAddress: string;
|
|
1820
|
+
}
|
|
1821
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1822
|
+
name: string;
|
|
1823
|
+
family: CoinFamily;
|
|
1824
|
+
explorerUrl: string;
|
|
1825
|
+
accountExplorerUrl: string;
|
|
1826
|
+
chainId: number;
|
|
1827
|
+
forwarderFactoryAddress: string;
|
|
1828
|
+
forwarderImplementationAddress: string;
|
|
1829
|
+
}
|
|
1830
|
+
declare class Iota extends Mainnet implements AccountNetwork {
|
|
1831
|
+
name: string;
|
|
1832
|
+
family: CoinFamily;
|
|
1833
|
+
explorerUrl: string;
|
|
1834
|
+
}
|
|
1835
|
+
declare class IotaTestnet extends Testnet implements AccountNetwork {
|
|
1836
|
+
name: string;
|
|
1837
|
+
family: CoinFamily;
|
|
1838
|
+
explorerUrl: string;
|
|
1839
|
+
}
|
|
1840
|
+
declare class Flow extends Mainnet implements EthereumNetwork {
|
|
1841
|
+
name: string;
|
|
1842
|
+
family: CoinFamily;
|
|
1843
|
+
explorerUrl: string;
|
|
1844
|
+
accountExplorerUrl: string;
|
|
1845
|
+
chainId: number;
|
|
1846
|
+
nativeCoinOperationHashPrefix: string;
|
|
1847
|
+
}
|
|
1848
|
+
declare class FlowTestnet extends Testnet implements EthereumNetwork {
|
|
1849
|
+
name: string;
|
|
1850
|
+
family: CoinFamily;
|
|
1851
|
+
explorerUrl: string;
|
|
1852
|
+
accountExplorerUrl: string;
|
|
1853
|
+
chainId: number;
|
|
1854
|
+
nativeCoinOperationHashPrefix: string;
|
|
1855
|
+
}
|
|
1856
|
+
declare class MegaETH extends Mainnet implements EthereumNetwork {
|
|
1857
|
+
name: string;
|
|
1858
|
+
family: CoinFamily;
|
|
1859
|
+
explorerUrl: string;
|
|
1860
|
+
accountExplorerUrl: string;
|
|
1861
|
+
chainId: number;
|
|
1862
|
+
nativeCoinOperationHashPrefix: string;
|
|
1863
|
+
}
|
|
1864
|
+
declare class MegaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1865
|
+
name: string;
|
|
1866
|
+
family: CoinFamily;
|
|
1867
|
+
explorerUrl: string;
|
|
1868
|
+
accountExplorerUrl: string;
|
|
1869
|
+
chainId: number;
|
|
1870
|
+
nativeCoinOperationHashPrefix: string;
|
|
1871
|
+
}
|
|
1872
|
+
declare class Plume extends Mainnet implements EthereumNetwork {
|
|
1873
|
+
name: string;
|
|
1874
|
+
family: CoinFamily;
|
|
1875
|
+
explorerUrl: string;
|
|
1876
|
+
accountExplorerUrl: string;
|
|
1877
|
+
chainId: number;
|
|
1878
|
+
nativeCoinOperationHashPrefix: string;
|
|
1879
|
+
}
|
|
1880
|
+
declare class HederaEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1881
|
+
name: string;
|
|
1882
|
+
family: CoinFamily;
|
|
1883
|
+
explorerUrl: string;
|
|
1884
|
+
accountExplorerUrl: string;
|
|
1885
|
+
chainId: number;
|
|
1886
|
+
nativeCoinOperationHashPrefix: string;
|
|
1887
|
+
}
|
|
1888
|
+
declare class HederaEVM extends Mainnet implements EthereumNetwork {
|
|
1889
|
+
name: string;
|
|
1890
|
+
family: CoinFamily;
|
|
1891
|
+
explorerUrl: string;
|
|
1892
|
+
accountExplorerUrl: string;
|
|
1893
|
+
chainId: number;
|
|
1894
|
+
nativeCoinOperationHashPrefix: string;
|
|
1895
|
+
}
|
|
1896
|
+
declare class PlumeTestnet extends Testnet implements EthereumNetwork {
|
|
1897
|
+
name: string;
|
|
1898
|
+
family: CoinFamily;
|
|
1899
|
+
explorerUrl: string;
|
|
1900
|
+
accountExplorerUrl: string;
|
|
1901
|
+
chainId: number;
|
|
1902
|
+
nativeCoinOperationHashPrefix: string;
|
|
1903
|
+
}
|
|
1904
|
+
declare class Canton extends Mainnet implements BaseNetwork {
|
|
1905
|
+
name: string;
|
|
1906
|
+
family: CoinFamily;
|
|
1907
|
+
explorerUrl: string;
|
|
1908
|
+
}
|
|
1909
|
+
declare class CantonTestnet extends Testnet implements BaseNetwork {
|
|
1910
|
+
name: string;
|
|
1911
|
+
family: CoinFamily;
|
|
1912
|
+
explorerUrl: string;
|
|
1913
|
+
}
|
|
1914
|
+
declare class Dogeos extends Mainnet implements EthereumNetwork {
|
|
1915
|
+
name: string;
|
|
1916
|
+
family: CoinFamily;
|
|
1917
|
+
explorerUrl: string;
|
|
1918
|
+
accountExplorerUrl: string;
|
|
1919
|
+
chainId: number;
|
|
1920
|
+
nativeCoinOperationHashPrefix: string;
|
|
1921
|
+
}
|
|
1922
|
+
declare class DogeosTestnet extends Testnet implements EthereumNetwork {
|
|
1923
|
+
name: string;
|
|
1924
|
+
family: CoinFamily;
|
|
1925
|
+
explorerUrl: string;
|
|
1926
|
+
accountExplorerUrl: string;
|
|
1927
|
+
chainId: number;
|
|
1928
|
+
nativeCoinOperationHashPrefix: string;
|
|
761
1929
|
}
|
|
762
1930
|
export declare const Networks: {
|
|
763
1931
|
main: {
|
|
764
1932
|
ada: Readonly<Ada>;
|
|
765
1933
|
algorand: Readonly<Algorand>;
|
|
1934
|
+
apechain: Readonly<ApeChain>;
|
|
1935
|
+
apt: Readonly<Apt>;
|
|
766
1936
|
arbitrum: Readonly<Arbitrum>;
|
|
1937
|
+
asi: Readonly<Asi>;
|
|
767
1938
|
atom: Readonly<Atom>;
|
|
768
1939
|
avalancheC: Readonly<AvalancheC>;
|
|
769
1940
|
avalancheP: Readonly<AvalancheP>;
|
|
1941
|
+
baby: Readonly<Baby>;
|
|
1942
|
+
basechain: Readonly<BaseChain>;
|
|
770
1943
|
bitcoin: Readonly<Bitcoin>;
|
|
771
1944
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
772
1945
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
773
1946
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
774
|
-
bera: Readonly<
|
|
1947
|
+
bera: Readonly<Berachain>;
|
|
775
1948
|
bld: Readonly<Bld>;
|
|
776
1949
|
bsc: Readonly<BinanceSmartChain>;
|
|
1950
|
+
canton: Readonly<Canton>;
|
|
777
1951
|
casper: Readonly<Casper>;
|
|
778
1952
|
celo: Readonly<Celo>;
|
|
779
|
-
|
|
1953
|
+
coredao: Readonly<Coredao>;
|
|
1954
|
+
coreum: Readonly<Coreum>;
|
|
1955
|
+
cronos: Readonly<Cronos>;
|
|
780
1956
|
dash: Readonly<Dash>;
|
|
781
1957
|
dogecoin: Readonly<Dogecoin>;
|
|
782
|
-
|
|
1958
|
+
dogeos: Readonly<Dogeos>;
|
|
1959
|
+
dot: Readonly<PolkadotAssetHub>;
|
|
783
1960
|
eCash: Readonly<ECash>;
|
|
784
1961
|
eos: Readonly<Eos>;
|
|
785
1962
|
ethereum: Readonly<Ethereum>;
|
|
@@ -787,85 +1964,182 @@ export declare const Networks: {
|
|
|
787
1964
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
788
1965
|
ethereumW: Readonly<EthereumW>;
|
|
789
1966
|
fiat: Readonly<Fiat>;
|
|
1967
|
+
fetchai: Readonly<FetchAi>;
|
|
1968
|
+
flow: Readonly<Flow>;
|
|
1969
|
+
flr: Readonly<Flare>;
|
|
1970
|
+
flrP: Readonly<FlareP>;
|
|
1971
|
+
fluenteth: Readonly<FluentETH>;
|
|
790
1972
|
hash: Readonly<Hash>;
|
|
791
1973
|
hedera: Readonly<Hedera>;
|
|
1974
|
+
hederaEVM: Readonly<HederaEVM>;
|
|
1975
|
+
icp: Readonly<Icp>;
|
|
1976
|
+
ip: Readonly<IP>;
|
|
1977
|
+
initia: Readonly<Initia>;
|
|
1978
|
+
iota: Readonly<Iota>;
|
|
792
1979
|
injective: Readonly<Injective>;
|
|
1980
|
+
irys: Readonly<Irys>;
|
|
793
1981
|
islm: Readonly<Islm>;
|
|
1982
|
+
jovayeth: Readonly<JovayETH>;
|
|
1983
|
+
kaia: Readonly<Kaia>;
|
|
794
1984
|
kava: Readonly<Kava>;
|
|
1985
|
+
kavaevm: Readonly<KavaEVM>;
|
|
1986
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
795
1987
|
litecoin: Readonly<Litecoin>;
|
|
1988
|
+
megaeth: Readonly<MegaETH>;
|
|
1989
|
+
mon: Readonly<Monad>;
|
|
1990
|
+
mantle: Readonly<Mantle>;
|
|
1991
|
+
mantra: Readonly<Mantra>;
|
|
1992
|
+
plume: Readonly<Plume>;
|
|
796
1993
|
polygon: Readonly<Polygon>;
|
|
1994
|
+
polyx: Readonly<Polymesh>;
|
|
1995
|
+
phrs: Readonly<Pharos>;
|
|
1996
|
+
ctc: Readonly<Creditcoin>;
|
|
1997
|
+
hypeevm: Readonly<HypeEVM>;
|
|
1998
|
+
lineaeth: Readonly<LineaETH>;
|
|
1999
|
+
oas: Readonly<Oas>;
|
|
2000
|
+
og: Readonly<Og>;
|
|
797
2001
|
ofc: Readonly<Ofc>;
|
|
2002
|
+
okb: Readonly<Xlayer>;
|
|
2003
|
+
morph: Readonly<Morph>;
|
|
798
2004
|
optimism: Readonly<Optimism>;
|
|
799
2005
|
osmo: Readonly<Osmo>;
|
|
800
2006
|
rbtc: Readonly<Rbtc>;
|
|
2007
|
+
rune: Readonly<Rune>;
|
|
801
2008
|
stellar: Readonly<Stellar>;
|
|
802
2009
|
sei: Readonly<Sei>;
|
|
2010
|
+
seievm: Readonly<SeiEvm>;
|
|
2011
|
+
sgb: Readonly<Songbird>;
|
|
803
2012
|
sol: Readonly<Sol>;
|
|
2013
|
+
sonic: Readonly<Sonic>;
|
|
804
2014
|
sui: Readonly<Sui>;
|
|
805
2015
|
near: Readonly<Near>;
|
|
806
2016
|
stx: Readonly<Stx>;
|
|
2017
|
+
somi: Readonly<Somi>;
|
|
2018
|
+
soneium: Readonly<Soneium>;
|
|
807
2019
|
susd: Readonly<SUSD>;
|
|
2020
|
+
tao: Readonly<Bittensor>;
|
|
808
2021
|
tia: Readonly<Tia>;
|
|
809
2022
|
ton: Readonly<Ton>;
|
|
810
2023
|
trx: Readonly<Trx>;
|
|
2024
|
+
vet: Readonly<Vet>;
|
|
2025
|
+
wemix: Readonly<Wemix>;
|
|
2026
|
+
world: Readonly<World>;
|
|
2027
|
+
xdc: Readonly<Xdc>;
|
|
2028
|
+
xpl: Readonly<Plasma>;
|
|
811
2029
|
xrp: Readonly<Xrp>;
|
|
812
2030
|
xtz: Readonly<Xtz>;
|
|
813
2031
|
zCash: Readonly<ZCash>;
|
|
814
2032
|
zeta: Readonly<Zeta>;
|
|
2033
|
+
zkSync: Readonly<ZkSync>;
|
|
815
2034
|
};
|
|
816
2035
|
test: {
|
|
817
2036
|
ada: Readonly<AdaTestnet>;
|
|
818
2037
|
algorand: Readonly<AlgorandTestnet>;
|
|
2038
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
2039
|
+
apt: Readonly<AptTestnet>;
|
|
819
2040
|
arbitrum: Readonly<ArbitrumTestnet>;
|
|
2041
|
+
asi: Readonly<AsiTestnet>;
|
|
820
2042
|
atom: Readonly<AtomTestnet>;
|
|
821
2043
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
822
2044
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
2045
|
+
baby: Readonly<BabyTestnet>;
|
|
2046
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
823
2047
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
2048
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
2049
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
2050
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
824
2051
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
825
2052
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
826
2053
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
827
|
-
bera: Readonly<
|
|
2054
|
+
bera: Readonly<BerachainTestnet>;
|
|
828
2055
|
bld: Readonly<BldTestnet>;
|
|
829
2056
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
2057
|
+
canton: Readonly<CantonTestnet>;
|
|
830
2058
|
casper: Readonly<CasperTestnet>;
|
|
2059
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
831
2060
|
celo: Readonly<CeloTestnet>;
|
|
2061
|
+
cronos: Readonly<CronosTestnet>;
|
|
832
2062
|
dash: Readonly<DashTestnet>;
|
|
833
2063
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
834
|
-
|
|
2064
|
+
dogeos: Readonly<DogeosTestnet>;
|
|
2065
|
+
dot: Readonly<WestendAssetHub>;
|
|
835
2066
|
eCash: Readonly<ECashTestnet>;
|
|
836
2067
|
eos: Readonly<EosTestnet>;
|
|
837
2068
|
fiat: Readonly<FiatTestnet>;
|
|
2069
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
2070
|
+
flow: Readonly<FlowTestnet>;
|
|
2071
|
+
flr: Readonly<FlareTestnet>;
|
|
2072
|
+
flrP: Readonly<FlarePTestnet>;
|
|
2073
|
+
fluenteth: Readonly<FluentETHTestnet>;
|
|
2074
|
+
mon: Readonly<MonadTestnet>;
|
|
2075
|
+
megaeth: Readonly<MegaETHTestnet>;
|
|
838
2076
|
pyrmont: Readonly<Pyrmont>;
|
|
2077
|
+
plume: Readonly<PlumeTestnet>;
|
|
839
2078
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
840
2079
|
hash: Readonly<HashTestnet>;
|
|
841
2080
|
hedera: Readonly<HederaTestnet>;
|
|
2081
|
+
hederaEVM: Readonly<HederaEVMTestnet>;
|
|
2082
|
+
icp: Readonly<IcpTestnet>;
|
|
2083
|
+
ip: Readonly<IPTestnet>;
|
|
2084
|
+
initia: Readonly<InitiaTestnet>;
|
|
842
2085
|
injective: Readonly<InjectiveTestnet>;
|
|
2086
|
+
iota: Readonly<IotaTestnet>;
|
|
2087
|
+
irys: Readonly<IrysTestnet>;
|
|
843
2088
|
islm: Readonly<IslmTestnet>;
|
|
2089
|
+
jovayeth: Readonly<JovayETHTestnet>;
|
|
844
2090
|
kava: Readonly<KavaTestnet>;
|
|
2091
|
+
kavaevm: Readonly<KavaEVMTestnet>;
|
|
845
2092
|
kovan: Readonly<Kovan>;
|
|
846
2093
|
goerli: Readonly<Goerli>;
|
|
847
2094
|
holesky: Readonly<Holesky>;
|
|
2095
|
+
hoodi: Readonly<Hoodi>;
|
|
2096
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
848
2097
|
litecoin: Readonly<LitecoinTestnet>;
|
|
2098
|
+
mantle: Readonly<MantleTestnet>;
|
|
2099
|
+
mantra: Readonly<MantraTestnet>;
|
|
849
2100
|
polygon: Readonly<PolygonTestnet>;
|
|
2101
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
2102
|
+
phrs: Readonly<PharosTestnet>;
|
|
2103
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
2104
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
2105
|
+
lineaeth: Readonly<LineaETHTestnet>;
|
|
2106
|
+
oas: Readonly<OasTestnet>;
|
|
2107
|
+
og: Readonly<OgTestnet>;
|
|
850
2108
|
ofc: Readonly<OfcTestnet>;
|
|
2109
|
+
okb: Readonly<XlayerTestnet>;
|
|
2110
|
+
morph: Readonly<MorphTestnet>;
|
|
851
2111
|
optimism: Readonly<OptimismTestnet>;
|
|
852
2112
|
osmo: Readonly<OsmoTestnet>;
|
|
853
2113
|
rbtc: Readonly<RbtcTestnet>;
|
|
2114
|
+
rune: Readonly<RuneTestNet>;
|
|
2115
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
854
2116
|
stellar: Readonly<StellarTestnet>;
|
|
855
2117
|
sei: Readonly<SeiTestnet>;
|
|
2118
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
856
2119
|
sol: Readonly<SolTestnet>;
|
|
857
2120
|
sui: Readonly<SuiTestnet>;
|
|
858
2121
|
near: Readonly<NearTestnet>;
|
|
859
2122
|
stx: Readonly<StxTestnet>;
|
|
2123
|
+
stt: Readonly<SomniaTestnet>;
|
|
2124
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
2125
|
+
sonic: Readonly<SonicTestnet>;
|
|
2126
|
+
kaia: Readonly<KaiaTestnet>;
|
|
860
2127
|
susd: Readonly<SUSDTestnet>;
|
|
861
|
-
|
|
2128
|
+
coreum: Readonly<CoreumTestnet>;
|
|
2129
|
+
tao: Readonly<BittensorTestnet>;
|
|
862
2130
|
tia: Readonly<TiaTestnet>;
|
|
863
2131
|
ton: Readonly<TonTestnet>;
|
|
864
2132
|
trx: Readonly<TrxTestnet>;
|
|
2133
|
+
vet: Readonly<VetTestnet>;
|
|
2134
|
+
wemix: Readonly<WemixTestnet>;
|
|
2135
|
+
world: Readonly<WorldTestnet>;
|
|
2136
|
+
xdc: Readonly<XdcTestnet>;
|
|
2137
|
+
xpl: Readonly<PlasmaTestnet>;
|
|
865
2138
|
xrp: Readonly<XrpTestnet>;
|
|
866
2139
|
xtz: Readonly<XtzTestnet>;
|
|
867
2140
|
zCash: Readonly<ZCashTestnet>;
|
|
868
2141
|
zeta: Readonly<ZetaTestnet>;
|
|
2142
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
869
2143
|
};
|
|
870
2144
|
};
|
|
871
2145
|
export {};
|