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