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