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