@bitgo-beta/statics 15.1.1-beta.156 → 15.1.1-beta.1561
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 +1010 -75
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1608 -177
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +7 -3
- package/dist/src/allCoinsAndTokens.d.ts +2 -0
- package/dist/src/allCoinsAndTokens.d.ts.map +1 -0
- package/dist/src/allCoinsAndTokens.js +1159 -0
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +8 -3
- package/dist/src/base.d.ts +2048 -49
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +2143 -59
- package/dist/src/canton.d.ts +34 -0
- package/dist/src/canton.d.ts.map +1 -0
- package/dist/src/canton.js +51 -0
- package/dist/src/coinFeatures.d.ts +113 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +722 -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 +193 -0
- package/dist/src/coins/cantonTokens.d.ts +2 -0
- package/dist/src/coins/cantonTokens.d.ts.map +1 -0
- package/dist/src/coins/cantonTokens.js +12 -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 +14 -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 +1963 -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 +858 -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 +1678 -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 +22 -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 +436 -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 +366 -1687
- 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 +27 -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 +188 -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 +1439 -17
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1791 -100
- 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 +605 -108
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +994 -220
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +84 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -3
- package/.mocharc.js +0 -10
- package/.prettierignore +0 -2
- package/CHANGELOG.md +0 -913
package/dist/src/networks.d.ts
CHANGED
|
@@ -1,3 +1,46 @@
|
|
|
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
|
+
minImportToPFee: string;
|
|
20
|
+
maxImportFee: string;
|
|
21
|
+
createSubnetTx?: string;
|
|
22
|
+
createChainTx?: string;
|
|
23
|
+
creationTxFee?: string;
|
|
24
|
+
minConsumption?: string;
|
|
25
|
+
maxConsumption?: string;
|
|
26
|
+
maxSupply?: string;
|
|
27
|
+
minStake: string;
|
|
28
|
+
minStakeDuration?: string;
|
|
29
|
+
maxStakeDuration?: string;
|
|
30
|
+
minDelegationStake?: string;
|
|
31
|
+
minDelegationFee?: string;
|
|
32
|
+
flarePublicUrl?: string;
|
|
33
|
+
baseTxFee?: string;
|
|
34
|
+
createAssetTxFee?: string;
|
|
35
|
+
createSubnetTxFee?: string;
|
|
36
|
+
transformSubnetTxFee?: string;
|
|
37
|
+
createBlockchainTxFee?: string;
|
|
38
|
+
addPrimaryNetworkValidatorFee?: string;
|
|
39
|
+
addPrimaryNetworkDelegatorFee?: string;
|
|
40
|
+
addSubnetValidatorFee?: string;
|
|
41
|
+
addSubnetDelegatorFee?: string;
|
|
42
|
+
xChainBlockchainID?: string;
|
|
43
|
+
}
|
|
1
44
|
import { CoinFamily } from './base';
|
|
2
45
|
export declare enum NetworkType {
|
|
3
46
|
MAINNET = "mainnet",
|
|
@@ -11,6 +54,25 @@ export declare abstract class BaseNetwork {
|
|
|
11
54
|
}
|
|
12
55
|
export interface UtxoNetwork extends BaseNetwork {
|
|
13
56
|
utxolibName: string;
|
|
57
|
+
paygoAddressAttestationPubkey?: string;
|
|
58
|
+
}
|
|
59
|
+
export interface LightningNetwork extends UtxoNetwork {
|
|
60
|
+
/**
|
|
61
|
+
* The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
62
|
+
* between the user's extended private key and the Lightning service. This key facilitates secure communication
|
|
63
|
+
* by enabling the creation of a shared secret for encryption and decryption of data.
|
|
64
|
+
*/
|
|
65
|
+
lightningServicePubKey: string;
|
|
66
|
+
/**
|
|
67
|
+
* The public key of the middleware service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
68
|
+
* between the user's extended private key and the middleware service.
|
|
69
|
+
*/
|
|
70
|
+
middlewarePubKey: string;
|
|
71
|
+
/**
|
|
72
|
+
* The public key of the TAT service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
73
|
+
* between the user's extended private key and the TAT service.
|
|
74
|
+
*/
|
|
75
|
+
tatPubKey: string;
|
|
14
76
|
}
|
|
15
77
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
78
|
utxolibName: string;
|
|
@@ -40,15 +102,25 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
102
|
readonly minDelegationFee: string;
|
|
41
103
|
readonly avaxAssetID: string;
|
|
42
104
|
readonly txFee: string;
|
|
105
|
+
readonly maxImportFee: string;
|
|
43
106
|
}
|
|
44
107
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
108
|
readonly accountExplorerUrl?: string;
|
|
46
109
|
readonly blockExplorerUrl?: string;
|
|
47
110
|
}
|
|
111
|
+
export interface CosmosNetwork extends AccountNetwork {
|
|
112
|
+
readonly addressPrefix: string;
|
|
113
|
+
readonly validatorPrefix: string;
|
|
114
|
+
readonly denom: string;
|
|
115
|
+
readonly gasAmount: string;
|
|
116
|
+
readonly gasLimit: number;
|
|
117
|
+
readonly validDenoms: string[];
|
|
118
|
+
}
|
|
48
119
|
/**
|
|
49
120
|
* Specification name type of the chain. Used in setting up the registry
|
|
50
121
|
*/
|
|
51
|
-
export
|
|
122
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'westmint';
|
|
123
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet' | 'polymesh_mainnet';
|
|
52
124
|
export interface DotNetwork extends AccountNetwork {
|
|
53
125
|
readonly specName: PolkadotSpecNameType;
|
|
54
126
|
readonly genesisHash: string;
|
|
@@ -61,6 +133,18 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
133
|
readonly batcherContractAddress?: string;
|
|
62
134
|
readonly forwarderFactoryAddress?: string;
|
|
63
135
|
readonly forwarderImplementationAddress?: string;
|
|
136
|
+
readonly walletV2ForwarderFactoryAddress?: string;
|
|
137
|
+
readonly walletV2ForwarderImplementationAddress?: string;
|
|
138
|
+
readonly walletV4ForwarderFactoryAddress?: string;
|
|
139
|
+
readonly walletV4ForwarderImplementationAddress?: string;
|
|
140
|
+
readonly walletFactoryAddress?: string;
|
|
141
|
+
readonly walletImplementationAddress?: string;
|
|
142
|
+
readonly walletV2FactoryAddress?: string;
|
|
143
|
+
readonly walletV2ImplementationAddress?: string;
|
|
144
|
+
readonly walletV4FactoryAddress?: string;
|
|
145
|
+
readonly walletV4ImplementationAddress?: string;
|
|
146
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
147
|
+
readonly tokenOperationHashPrefix?: string;
|
|
64
148
|
}
|
|
65
149
|
export interface TronNetwork extends AccountNetwork {
|
|
66
150
|
maxFeeLimit: string;
|
|
@@ -110,12 +194,45 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
194
|
poolDeposit: number;
|
|
111
195
|
stakeKeyDeposit: number;
|
|
112
196
|
}
|
|
197
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
198
|
+
name: string;
|
|
199
|
+
family: CoinFamily;
|
|
200
|
+
explorerUrl: string;
|
|
201
|
+
accountExplorerUrl: string;
|
|
202
|
+
blockExplorerUrl: string;
|
|
203
|
+
}
|
|
204
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
205
|
+
name: string;
|
|
206
|
+
family: CoinFamily;
|
|
207
|
+
explorerUrl: string;
|
|
208
|
+
accountExplorerUrl: string;
|
|
209
|
+
blockExplorerUrl: string;
|
|
210
|
+
}
|
|
211
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
212
|
+
name: string;
|
|
213
|
+
family: CoinFamily;
|
|
214
|
+
explorerUrl: string;
|
|
215
|
+
accountExplorerUrl: string;
|
|
216
|
+
}
|
|
217
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
218
|
+
name: string;
|
|
219
|
+
family: CoinFamily;
|
|
220
|
+
explorerUrl: string;
|
|
221
|
+
accountExplorerUrl: string;
|
|
222
|
+
}
|
|
113
223
|
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
114
224
|
name: string;
|
|
115
225
|
family: CoinFamily;
|
|
116
226
|
explorerUrl: string;
|
|
117
227
|
accountExplorerUrl: string;
|
|
118
228
|
chainId: number;
|
|
229
|
+
nativeCoinOperationHashPrefix: string;
|
|
230
|
+
tokenOperationHashPrefix: string;
|
|
231
|
+
forwarderFactoryAddress: string;
|
|
232
|
+
forwarderImplementationAddress: string;
|
|
233
|
+
walletFactoryAddress: string;
|
|
234
|
+
walletImplementationAddress: string;
|
|
235
|
+
batcherContractAddress: string;
|
|
119
236
|
}
|
|
120
237
|
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
121
238
|
name: string;
|
|
@@ -123,6 +240,13 @@ declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
|
123
240
|
explorerUrl: string;
|
|
124
241
|
accountExplorerUrl: string;
|
|
125
242
|
chainId: number;
|
|
243
|
+
nativeCoinOperationHashPrefix: string;
|
|
244
|
+
tokenOperationHashPrefix: string;
|
|
245
|
+
forwarderFactoryAddress: string;
|
|
246
|
+
forwarderImplementationAddress: string;
|
|
247
|
+
walletFactoryAddress: string;
|
|
248
|
+
walletImplementationAddress: string;
|
|
249
|
+
batcherContractAddress: string;
|
|
126
250
|
}
|
|
127
251
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
128
252
|
name: string;
|
|
@@ -151,6 +275,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
151
275
|
alias: string;
|
|
152
276
|
vm: string;
|
|
153
277
|
txFee: string;
|
|
278
|
+
maxImportFee: string;
|
|
154
279
|
createSubnetTx: string;
|
|
155
280
|
createChainTx: string;
|
|
156
281
|
creationTxFee: string;
|
|
@@ -176,6 +301,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
176
301
|
hrp: string;
|
|
177
302
|
vm: string;
|
|
178
303
|
txFee: string;
|
|
304
|
+
maxImportFee: string;
|
|
179
305
|
createSubnetTx: string;
|
|
180
306
|
createChainTx: string;
|
|
181
307
|
creationTxFee: string;
|
|
@@ -194,6 +320,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
194
320
|
explorerUrl: string;
|
|
195
321
|
accountExplorerUrl: string;
|
|
196
322
|
chainId: number;
|
|
323
|
+
nativeCoinOperationHashPrefix: string;
|
|
324
|
+
tokenOperationHashPrefix: string;
|
|
325
|
+
batcherContractAddress: string;
|
|
197
326
|
}
|
|
198
327
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
199
328
|
name: string;
|
|
@@ -201,6 +330,63 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
201
330
|
explorerUrl: string;
|
|
202
331
|
accountExplorerUrl: string;
|
|
203
332
|
chainId: number;
|
|
333
|
+
nativeCoinOperationHashPrefix: string;
|
|
334
|
+
tokenOperationHashPrefix: string;
|
|
335
|
+
batcherContractAddress: string;
|
|
336
|
+
}
|
|
337
|
+
declare class OpBNB extends Mainnet implements EthereumNetwork {
|
|
338
|
+
name: string;
|
|
339
|
+
family: CoinFamily;
|
|
340
|
+
explorerUrl: string;
|
|
341
|
+
accountExplorerUrl: string;
|
|
342
|
+
chainId: number;
|
|
343
|
+
nativeCoinOperationHashPrefix: string;
|
|
344
|
+
tokenOperationHashPrefix: string;
|
|
345
|
+
}
|
|
346
|
+
declare class OpBNBTestnet extends Testnet implements EthereumNetwork {
|
|
347
|
+
name: string;
|
|
348
|
+
family: CoinFamily;
|
|
349
|
+
explorerUrl: string;
|
|
350
|
+
accountExplorerUrl: string;
|
|
351
|
+
chainId: number;
|
|
352
|
+
nativeCoinOperationHashPrefix: string;
|
|
353
|
+
tokenOperationHashPrefix: string;
|
|
354
|
+
}
|
|
355
|
+
declare class Fantom extends Mainnet implements EthereumNetwork {
|
|
356
|
+
name: string;
|
|
357
|
+
family: CoinFamily;
|
|
358
|
+
explorerUrl: string;
|
|
359
|
+
accountExplorerUrl: string;
|
|
360
|
+
chainId: number;
|
|
361
|
+
nativeCoinOperationHashPrefix: string;
|
|
362
|
+
tokenOperationHashPrefix: string;
|
|
363
|
+
}
|
|
364
|
+
declare class FantomTestnet extends Testnet implements EthereumNetwork {
|
|
365
|
+
name: string;
|
|
366
|
+
family: CoinFamily;
|
|
367
|
+
explorerUrl: string;
|
|
368
|
+
accountExplorerUrl: string;
|
|
369
|
+
chainId: number;
|
|
370
|
+
nativeCoinOperationHashPrefix: string;
|
|
371
|
+
tokenOperationHashPrefix: string;
|
|
372
|
+
}
|
|
373
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
374
|
+
name: string;
|
|
375
|
+
family: CoinFamily;
|
|
376
|
+
utxolibName: string;
|
|
377
|
+
explorerUrl: string;
|
|
378
|
+
lightningServicePubKey: string;
|
|
379
|
+
middlewarePubKey: string;
|
|
380
|
+
tatPubKey: string;
|
|
381
|
+
}
|
|
382
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
383
|
+
name: string;
|
|
384
|
+
family: CoinFamily;
|
|
385
|
+
utxolibName: string;
|
|
386
|
+
explorerUrl: string;
|
|
387
|
+
lightningServicePubKey: string;
|
|
388
|
+
middlewarePubKey: string;
|
|
389
|
+
tatPubKey: string;
|
|
204
390
|
}
|
|
205
391
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
206
392
|
name: string;
|
|
@@ -213,6 +399,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
213
399
|
family: CoinFamily;
|
|
214
400
|
utxolibName: string;
|
|
215
401
|
explorerUrl: string;
|
|
402
|
+
paygoAddressAttestationPubkey: string;
|
|
403
|
+
}
|
|
404
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
405
|
+
name: string;
|
|
406
|
+
family: CoinFamily;
|
|
407
|
+
utxolibName: string;
|
|
408
|
+
explorerUrl: string;
|
|
409
|
+
}
|
|
410
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
411
|
+
name: string;
|
|
412
|
+
family: CoinFamily;
|
|
413
|
+
utxolibName: string;
|
|
414
|
+
explorerUrl: string;
|
|
415
|
+
}
|
|
416
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
417
|
+
name: string;
|
|
418
|
+
family: CoinFamily;
|
|
419
|
+
utxolibName: string;
|
|
420
|
+
explorerUrl: string;
|
|
216
421
|
}
|
|
217
422
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
218
423
|
name: string;
|
|
@@ -286,7 +491,7 @@ declare class ECashTestnet extends Testnet implements UtxoNetwork {
|
|
|
286
491
|
utxolibName: string;
|
|
287
492
|
explorerUrl: undefined;
|
|
288
493
|
}
|
|
289
|
-
declare class
|
|
494
|
+
declare class PolkadotAssetHub extends Mainnet implements DotNetwork {
|
|
290
495
|
name: string;
|
|
291
496
|
family: CoinFamily;
|
|
292
497
|
explorerUrl: string;
|
|
@@ -296,7 +501,7 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
296
501
|
chainName: string;
|
|
297
502
|
txVersion: number;
|
|
298
503
|
}
|
|
299
|
-
declare class
|
|
504
|
+
declare class WestendAssetHub extends Testnet implements DotNetwork {
|
|
300
505
|
name: string;
|
|
301
506
|
family: CoinFamily;
|
|
302
507
|
explorerUrl: string;
|
|
@@ -312,6 +517,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
312
517
|
explorerUrl: string;
|
|
313
518
|
accountExplorerUrl: string;
|
|
314
519
|
chainId: number;
|
|
520
|
+
nativeCoinOperationHashPrefix: string;
|
|
521
|
+
tokenOperationHashPrefix: string;
|
|
315
522
|
}
|
|
316
523
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
317
524
|
name: string;
|
|
@@ -319,6 +526,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
319
526
|
explorerUrl: string;
|
|
320
527
|
accountExplorerUrl: string;
|
|
321
528
|
chainId: number;
|
|
529
|
+
nativeCoinOperationHashPrefix: string;
|
|
530
|
+
tokenOperationHashPrefix: string;
|
|
322
531
|
}
|
|
323
532
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
324
533
|
name: string;
|
|
@@ -342,6 +551,18 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
342
551
|
batcherContractAddress: string;
|
|
343
552
|
forwarderFactoryAddress: string;
|
|
344
553
|
forwarderImplementationAddress: string;
|
|
554
|
+
walletV2ForwarderFactoryAddress: string;
|
|
555
|
+
walletV2ForwarderImplementationAddress: string;
|
|
556
|
+
walletV4ForwarderFactoryAddress: string;
|
|
557
|
+
walletV4ForwarderImplementationAddress: string;
|
|
558
|
+
nativeCoinOperationHashPrefix: string;
|
|
559
|
+
tokenOperationHashPrefix: string;
|
|
560
|
+
walletFactoryAddress: string;
|
|
561
|
+
walletImplementationAddress: string;
|
|
562
|
+
walletV2FactoryAddress: string;
|
|
563
|
+
walletV2ImplementationAddress: string;
|
|
564
|
+
walletV4FactoryAddress: string;
|
|
565
|
+
walletV4ImplementationAddress: string;
|
|
345
566
|
}
|
|
346
567
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
347
568
|
name: string;
|
|
@@ -358,6 +579,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
358
579
|
batcherContractAddress: string;
|
|
359
580
|
forwarderFactoryAddress: string;
|
|
360
581
|
forwarderImplementationAddress: string;
|
|
582
|
+
nativeCoinOperationHashPrefix: string;
|
|
583
|
+
tokenOperationHashPrefix: string;
|
|
361
584
|
}
|
|
362
585
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
363
586
|
name: string;
|
|
@@ -374,6 +597,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
374
597
|
batcherContractAddress: string;
|
|
375
598
|
forwarderFactoryAddress: string;
|
|
376
599
|
forwarderImplementationAddress: string;
|
|
600
|
+
nativeCoinOperationHashPrefix: string;
|
|
601
|
+
tokenOperationHashPrefix: string;
|
|
377
602
|
}
|
|
378
603
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
379
604
|
name: string;
|
|
@@ -385,6 +610,8 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
385
610
|
batcherContractAddress: string;
|
|
386
611
|
forwarderFactoryAddress: string;
|
|
387
612
|
forwarderImplementationAddress: string;
|
|
613
|
+
nativeCoinOperationHashPrefix: string;
|
|
614
|
+
tokenOperationHashPrefix: string;
|
|
388
615
|
}
|
|
389
616
|
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
390
617
|
name: string;
|
|
@@ -396,6 +623,33 @@ declare class Holesky extends Testnet implements EthereumNetwork {
|
|
|
396
623
|
batcherContractAddress: string;
|
|
397
624
|
forwarderFactoryAddress: string;
|
|
398
625
|
forwarderImplementationAddress: string;
|
|
626
|
+
nativeCoinOperationHashPrefix: string;
|
|
627
|
+
tokenOperationHashPrefix: string;
|
|
628
|
+
walletV4ForwarderFactoryAddress: string;
|
|
629
|
+
walletV4ForwarderImplementationAddress: string;
|
|
630
|
+
}
|
|
631
|
+
declare class Hoodi extends Testnet implements EthereumNetwork {
|
|
632
|
+
name: string;
|
|
633
|
+
family: CoinFamily;
|
|
634
|
+
explorerUrl: string;
|
|
635
|
+
accountExplorerUrl: string;
|
|
636
|
+
blockExplorerUrl: string;
|
|
637
|
+
chainId: number;
|
|
638
|
+
batcherContractAddress: string;
|
|
639
|
+
forwarderFactoryAddress: string;
|
|
640
|
+
forwarderImplementationAddress: string;
|
|
641
|
+
walletV2ForwarderFactoryAddress: string;
|
|
642
|
+
walletV2ForwarderImplementationAddress: string;
|
|
643
|
+
walletV4ForwarderFactoryAddress: string;
|
|
644
|
+
walletV4ForwarderImplementationAddress: string;
|
|
645
|
+
walletFactoryAddress: string;
|
|
646
|
+
walletImplementationAddress: string;
|
|
647
|
+
walletV2FactoryAddress: string;
|
|
648
|
+
walletV2ImplementationAddress: string;
|
|
649
|
+
walletV4FactoryAddress: string;
|
|
650
|
+
walletV4ImplementationAddress: string;
|
|
651
|
+
nativeCoinOperationHashPrefix: string;
|
|
652
|
+
tokenOperationHashPrefix: string;
|
|
399
653
|
}
|
|
400
654
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
401
655
|
name: string;
|
|
@@ -403,6 +657,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
403
657
|
explorerUrl: string;
|
|
404
658
|
accountExplorerUrl: string;
|
|
405
659
|
chainId: number;
|
|
660
|
+
nativeCoinOperationHashPrefix: string;
|
|
661
|
+
tokenOperationHashPrefix: string;
|
|
406
662
|
}
|
|
407
663
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
408
664
|
name: string;
|
|
@@ -410,6 +666,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
410
666
|
explorerUrl: string;
|
|
411
667
|
accountExplorerUrl: string;
|
|
412
668
|
chainId: number;
|
|
669
|
+
nativeCoinOperationHashPrefix: string;
|
|
670
|
+
tokenOperationHashPrefix: string;
|
|
413
671
|
}
|
|
414
672
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
415
673
|
name: string;
|
|
@@ -459,6 +717,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
459
717
|
explorerUrl: string;
|
|
460
718
|
accountExplorerUrl: string;
|
|
461
719
|
chainId: number;
|
|
720
|
+
nativeCoinOperationHashPrefix: string;
|
|
721
|
+
tokenOperationHashPrefix: string;
|
|
462
722
|
}
|
|
463
723
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
464
724
|
name: string;
|
|
@@ -466,6 +726,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
466
726
|
explorerUrl: string;
|
|
467
727
|
accountExplorerUrl: string;
|
|
468
728
|
chainId: number;
|
|
729
|
+
nativeCoinOperationHashPrefix: string;
|
|
730
|
+
tokenOperationHashPrefix: string;
|
|
469
731
|
}
|
|
470
732
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
471
733
|
name: string;
|
|
@@ -577,15 +839,27 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
577
839
|
family: CoinFamily;
|
|
578
840
|
explorerUrl: string;
|
|
579
841
|
}
|
|
580
|
-
declare class Kava extends Mainnet implements
|
|
842
|
+
declare class Kava extends Mainnet implements CosmosNetwork {
|
|
581
843
|
name: string;
|
|
582
844
|
family: CoinFamily;
|
|
583
845
|
explorerUrl: string;
|
|
846
|
+
addressPrefix: string;
|
|
847
|
+
validatorPrefix: string;
|
|
848
|
+
denom: string;
|
|
849
|
+
gasAmount: string;
|
|
850
|
+
gasLimit: number;
|
|
851
|
+
validDenoms: string[];
|
|
584
852
|
}
|
|
585
|
-
declare class KavaTestnet extends Testnet implements
|
|
853
|
+
declare class KavaTestnet extends Testnet implements CosmosNetwork {
|
|
586
854
|
name: string;
|
|
587
855
|
family: CoinFamily;
|
|
588
856
|
explorerUrl: string;
|
|
857
|
+
addressPrefix: string;
|
|
858
|
+
validatorPrefix: string;
|
|
859
|
+
denom: string;
|
|
860
|
+
gasAmount: string;
|
|
861
|
+
gasLimit: number;
|
|
862
|
+
validDenoms: string[];
|
|
589
863
|
}
|
|
590
864
|
declare class Ton extends Mainnet implements AccountNetwork {
|
|
591
865
|
name: string;
|
|
@@ -597,25 +871,97 @@ declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
|
597
871
|
family: CoinFamily;
|
|
598
872
|
explorerUrl: string;
|
|
599
873
|
}
|
|
600
|
-
declare class
|
|
874
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
601
875
|
name: string;
|
|
602
876
|
family: CoinFamily;
|
|
603
877
|
explorerUrl: string;
|
|
604
878
|
}
|
|
605
|
-
declare class
|
|
879
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
606
880
|
name: string;
|
|
607
881
|
family: CoinFamily;
|
|
608
882
|
explorerUrl: string;
|
|
609
883
|
}
|
|
610
|
-
declare class
|
|
884
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
611
885
|
name: string;
|
|
612
886
|
family: CoinFamily;
|
|
613
|
-
explorerUrl:
|
|
887
|
+
explorerUrl: string;
|
|
614
888
|
}
|
|
615
|
-
declare class
|
|
889
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
616
890
|
name: string;
|
|
617
891
|
family: CoinFamily;
|
|
618
|
-
explorerUrl:
|
|
892
|
+
explorerUrl: string;
|
|
893
|
+
}
|
|
894
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
895
|
+
name: string;
|
|
896
|
+
family: CoinFamily;
|
|
897
|
+
explorerUrl: string;
|
|
898
|
+
}
|
|
899
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
900
|
+
name: string;
|
|
901
|
+
family: CoinFamily;
|
|
902
|
+
explorerUrl: string;
|
|
903
|
+
}
|
|
904
|
+
declare class Mantra extends Mainnet implements CosmosNetwork {
|
|
905
|
+
name: string;
|
|
906
|
+
family: CoinFamily;
|
|
907
|
+
explorerUrl: string;
|
|
908
|
+
addressPrefix: string;
|
|
909
|
+
validatorPrefix: string;
|
|
910
|
+
denom: string;
|
|
911
|
+
gasAmount: string;
|
|
912
|
+
gasLimit: number;
|
|
913
|
+
validDenoms: string[];
|
|
914
|
+
}
|
|
915
|
+
declare class MantraTestnet extends Testnet implements CosmosNetwork {
|
|
916
|
+
name: string;
|
|
917
|
+
family: CoinFamily;
|
|
918
|
+
explorerUrl: string;
|
|
919
|
+
addressPrefix: string;
|
|
920
|
+
validatorPrefix: string;
|
|
921
|
+
denom: string;
|
|
922
|
+
gasAmount: string;
|
|
923
|
+
gasLimit: number;
|
|
924
|
+
validDenoms: string[];
|
|
925
|
+
}
|
|
926
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
927
|
+
name: string;
|
|
928
|
+
family: CoinFamily;
|
|
929
|
+
explorerUrl: string;
|
|
930
|
+
}
|
|
931
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
932
|
+
name: string;
|
|
933
|
+
family: CoinFamily;
|
|
934
|
+
explorerUrl: string;
|
|
935
|
+
}
|
|
936
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
937
|
+
name: string;
|
|
938
|
+
family: CoinFamily;
|
|
939
|
+
explorerUrl: string;
|
|
940
|
+
}
|
|
941
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
942
|
+
name: string;
|
|
943
|
+
family: CoinFamily;
|
|
944
|
+
explorerUrl: string;
|
|
945
|
+
}
|
|
946
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
947
|
+
name: string;
|
|
948
|
+
family: CoinFamily;
|
|
949
|
+
explorerUrl: string;
|
|
950
|
+
}
|
|
951
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
952
|
+
name: string;
|
|
953
|
+
family: CoinFamily;
|
|
954
|
+
explorerUrl: string;
|
|
955
|
+
}
|
|
956
|
+
declare class Asi extends Mainnet implements AccountNetwork {
|
|
957
|
+
name: string;
|
|
958
|
+
family: CoinFamily;
|
|
959
|
+
explorerUrl: string;
|
|
960
|
+
}
|
|
961
|
+
declare class AsiTestnet extends Testnet implements AccountNetwork {
|
|
962
|
+
name: string;
|
|
963
|
+
family: CoinFamily;
|
|
964
|
+
explorerUrl: string;
|
|
619
965
|
}
|
|
620
966
|
declare class Islm extends Mainnet implements AccountNetwork {
|
|
621
967
|
name: string;
|
|
@@ -661,9 +1007,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
661
1007
|
family: CoinFamily;
|
|
662
1008
|
explorerUrl: undefined;
|
|
663
1009
|
}
|
|
1010
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
1011
|
+
name: string;
|
|
1012
|
+
family: CoinFamily;
|
|
1013
|
+
explorerUrl: string;
|
|
1014
|
+
}
|
|
1015
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
1016
|
+
name: string;
|
|
1017
|
+
family: CoinFamily;
|
|
1018
|
+
explorerUrl: string;
|
|
1019
|
+
specName: SubstrateSpecNameType;
|
|
1020
|
+
genesisHash: string;
|
|
1021
|
+
specVersion: number;
|
|
1022
|
+
chainName: string;
|
|
1023
|
+
txVersion: number;
|
|
1024
|
+
}
|
|
664
1025
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
665
1026
|
name: string;
|
|
666
1027
|
family: CoinFamily;
|
|
1028
|
+
accountExplorerUrl: string;
|
|
667
1029
|
explorerUrl: string;
|
|
668
1030
|
maxFeeLimit: string;
|
|
669
1031
|
contractCallFeeLimit: string;
|
|
@@ -671,6 +1033,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
671
1033
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
672
1034
|
name: string;
|
|
673
1035
|
family: CoinFamily;
|
|
1036
|
+
accountExplorerUrl: string;
|
|
674
1037
|
explorerUrl: string;
|
|
675
1038
|
maxFeeLimit: string;
|
|
676
1039
|
contractCallFeeLimit: string;
|
|
@@ -689,11 +1052,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
689
1052
|
name: string;
|
|
690
1053
|
family: CoinFamily;
|
|
691
1054
|
explorerUrl: string;
|
|
1055
|
+
accountExplorerUrl: string;
|
|
692
1056
|
}
|
|
693
1057
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
694
1058
|
name: string;
|
|
695
1059
|
family: CoinFamily;
|
|
696
1060
|
explorerUrl: string;
|
|
1061
|
+
accountExplorerUrl: string;
|
|
697
1062
|
}
|
|
698
1063
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
699
1064
|
name: string;
|
|
@@ -732,6 +1097,10 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
732
1097
|
walletFactoryAddress: string;
|
|
733
1098
|
walletImplementationAddress: string;
|
|
734
1099
|
batcherContractAddress: string;
|
|
1100
|
+
nativeCoinOperationHashPrefix: string;
|
|
1101
|
+
tokenOperationHashPrefix: string;
|
|
1102
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1103
|
+
walletV4ForwarderImplementationAddress: string;
|
|
735
1104
|
}
|
|
736
1105
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
737
1106
|
name: string;
|
|
@@ -744,6 +1113,10 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
744
1113
|
walletFactoryAddress: string;
|
|
745
1114
|
walletImplementationAddress: string;
|
|
746
1115
|
batcherContractAddress: string;
|
|
1116
|
+
nativeCoinOperationHashPrefix: string;
|
|
1117
|
+
tokenOperationHashPrefix: string;
|
|
1118
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1119
|
+
walletV4ForwarderImplementationAddress: string;
|
|
747
1120
|
}
|
|
748
1121
|
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
749
1122
|
name: string;
|
|
@@ -751,6 +1124,15 @@ declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
|
751
1124
|
explorerUrl: string;
|
|
752
1125
|
accountExplorerUrl: string;
|
|
753
1126
|
chainId: number;
|
|
1127
|
+
nativeCoinOperationHashPrefix: string;
|
|
1128
|
+
tokenOperationHashPrefix: string;
|
|
1129
|
+
forwarderFactoryAddress: string;
|
|
1130
|
+
forwarderImplementationAddress: string;
|
|
1131
|
+
walletFactoryAddress: string;
|
|
1132
|
+
walletImplementationAddress: string;
|
|
1133
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1134
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1135
|
+
batcherContractAddress: string;
|
|
754
1136
|
}
|
|
755
1137
|
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
756
1138
|
name: string;
|
|
@@ -758,28 +1140,962 @@ declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
|
758
1140
|
explorerUrl: string;
|
|
759
1141
|
accountExplorerUrl: string;
|
|
760
1142
|
chainId: number;
|
|
1143
|
+
nativeCoinOperationHashPrefix: string;
|
|
1144
|
+
tokenOperationHashPrefix: string;
|
|
1145
|
+
forwarderFactoryAddress: string;
|
|
1146
|
+
forwarderImplementationAddress: string;
|
|
1147
|
+
walletFactoryAddress: string;
|
|
1148
|
+
walletImplementationAddress: string;
|
|
1149
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1150
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1151
|
+
batcherContractAddress: string;
|
|
1152
|
+
}
|
|
1153
|
+
declare class ZkSync 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
|
+
}
|
|
1162
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
1163
|
+
name: string;
|
|
1164
|
+
family: CoinFamily;
|
|
1165
|
+
explorerUrl: string;
|
|
1166
|
+
accountExplorerUrl: string;
|
|
1167
|
+
chainId: number;
|
|
1168
|
+
nativeCoinOperationHashPrefix: string;
|
|
1169
|
+
tokenOperationHashPrefix: string;
|
|
1170
|
+
forwarderFactoryAddress: string;
|
|
1171
|
+
forwarderImplementationAddress: string;
|
|
1172
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1173
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1174
|
+
walletFactoryAddress: string;
|
|
1175
|
+
walletImplementationAddress: string;
|
|
1176
|
+
}
|
|
1177
|
+
declare class ZkSyncEra extends Mainnet implements EthereumNetwork {
|
|
1178
|
+
name: string;
|
|
1179
|
+
family: CoinFamily;
|
|
1180
|
+
explorerUrl: string;
|
|
1181
|
+
accountExplorerUrl: string;
|
|
1182
|
+
chainId: number;
|
|
1183
|
+
nativeCoinOperationHashPrefix: string;
|
|
1184
|
+
tokenOperationHashPrefix: string;
|
|
1185
|
+
}
|
|
1186
|
+
declare class ZkSyncEraTestnet extends Testnet implements EthereumNetwork {
|
|
1187
|
+
name: string;
|
|
1188
|
+
family: CoinFamily;
|
|
1189
|
+
explorerUrl: string;
|
|
1190
|
+
accountExplorerUrl: string;
|
|
1191
|
+
chainId: number;
|
|
1192
|
+
nativeCoinOperationHashPrefix: string;
|
|
1193
|
+
tokenOperationHashPrefix: string;
|
|
1194
|
+
forwarderFactoryAddress: string;
|
|
1195
|
+
forwarderImplementationAddress: string;
|
|
1196
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1197
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1198
|
+
walletFactoryAddress: string;
|
|
1199
|
+
walletImplementationAddress: string;
|
|
1200
|
+
}
|
|
1201
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
1202
|
+
name: string;
|
|
1203
|
+
family: CoinFamily;
|
|
1204
|
+
explorerUrl: string;
|
|
1205
|
+
accountExplorerUrl: string;
|
|
1206
|
+
chainId: number;
|
|
1207
|
+
nativeCoinOperationHashPrefix: string;
|
|
1208
|
+
tokenOperationHashPrefix: string;
|
|
1209
|
+
batcherContractAddress: string;
|
|
1210
|
+
forwarderFactoryAddress: string;
|
|
1211
|
+
forwarderImplementationAddress: string;
|
|
1212
|
+
}
|
|
1213
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1214
|
+
name: string;
|
|
1215
|
+
family: CoinFamily;
|
|
1216
|
+
explorerUrl: string;
|
|
1217
|
+
accountExplorerUrl: string;
|
|
1218
|
+
chainId: number;
|
|
1219
|
+
nativeCoinOperationHashPrefix: string;
|
|
1220
|
+
tokenOperationHashPrefix: string;
|
|
1221
|
+
batcherContractAddress: string;
|
|
1222
|
+
forwarderFactoryAddress: string;
|
|
1223
|
+
forwarderImplementationAddress: string;
|
|
1224
|
+
}
|
|
1225
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1226
|
+
name: string;
|
|
1227
|
+
family: CoinFamily;
|
|
1228
|
+
explorerUrl: string;
|
|
1229
|
+
accountExplorerUrl: string;
|
|
1230
|
+
chainId: number;
|
|
1231
|
+
nativeCoinOperationHashPrefix: string;
|
|
1232
|
+
batcherContractAddress: string;
|
|
1233
|
+
forwarderFactoryAddress: string;
|
|
1234
|
+
forwarderImplementationAddress: string;
|
|
1235
|
+
}
|
|
1236
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1237
|
+
name: string;
|
|
1238
|
+
family: CoinFamily;
|
|
1239
|
+
explorerUrl: string;
|
|
1240
|
+
accountExplorerUrl: string;
|
|
1241
|
+
chainId: number;
|
|
1242
|
+
nativeCoinOperationHashPrefix: string;
|
|
1243
|
+
batcherContractAddress: string;
|
|
1244
|
+
forwarderFactoryAddress: string;
|
|
1245
|
+
forwarderImplementationAddress: string;
|
|
1246
|
+
}
|
|
1247
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1248
|
+
name: string;
|
|
1249
|
+
family: CoinFamily;
|
|
1250
|
+
explorerUrl: string;
|
|
1251
|
+
accountExplorerUrl: string;
|
|
1252
|
+
chainId: number;
|
|
1253
|
+
nativeCoinOperationHashPrefix: string;
|
|
1254
|
+
batcherContractAddress: string;
|
|
1255
|
+
forwarderFactoryAddress: string;
|
|
1256
|
+
forwarderImplementationAddress: string;
|
|
1257
|
+
}
|
|
1258
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1259
|
+
name: string;
|
|
1260
|
+
family: CoinFamily;
|
|
1261
|
+
explorerUrl: string;
|
|
1262
|
+
accountExplorerUrl: string;
|
|
1263
|
+
chainId: number;
|
|
1264
|
+
nativeCoinOperationHashPrefix: string;
|
|
1265
|
+
batcherContractAddress: string;
|
|
1266
|
+
forwarderFactoryAddress: string;
|
|
1267
|
+
forwarderImplementationAddress: string;
|
|
1268
|
+
}
|
|
1269
|
+
declare class IP extends Mainnet implements EthereumNetwork {
|
|
1270
|
+
name: string;
|
|
1271
|
+
family: CoinFamily;
|
|
1272
|
+
explorerUrl: string;
|
|
1273
|
+
accountExplorerUrl: string;
|
|
1274
|
+
chainId: number;
|
|
1275
|
+
nativeCoinOperationHashPrefix: string;
|
|
1276
|
+
}
|
|
1277
|
+
declare class IPTestnet extends Testnet implements EthereumNetwork {
|
|
1278
|
+
name: string;
|
|
1279
|
+
family: CoinFamily;
|
|
1280
|
+
explorerUrl: string;
|
|
1281
|
+
accountExplorerUrl: string;
|
|
1282
|
+
chainId: number;
|
|
1283
|
+
nativeCoinOperationHashPrefix: string;
|
|
1284
|
+
}
|
|
1285
|
+
declare class ApeChain extends Mainnet implements EthereumNetwork {
|
|
1286
|
+
name: string;
|
|
1287
|
+
family: CoinFamily;
|
|
1288
|
+
explorerUrl: string;
|
|
1289
|
+
accountExplorerUrl: string;
|
|
1290
|
+
chainId: number;
|
|
1291
|
+
nativeCoinOperationHashPrefix: string;
|
|
1292
|
+
}
|
|
1293
|
+
declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1294
|
+
name: string;
|
|
1295
|
+
family: CoinFamily;
|
|
1296
|
+
explorerUrl: string;
|
|
1297
|
+
accountExplorerUrl: string;
|
|
1298
|
+
chainId: number;
|
|
1299
|
+
nativeCoinOperationHashPrefix: string;
|
|
1300
|
+
forwarderFactoryAddress: string;
|
|
1301
|
+
forwarderImplementationAddress: string;
|
|
1302
|
+
walletFactoryAddress: string;
|
|
1303
|
+
walletImplementationAddress: string;
|
|
1304
|
+
batcherContractAddress: string;
|
|
1305
|
+
}
|
|
1306
|
+
declare class Pharos extends Mainnet implements EthereumNetwork {
|
|
1307
|
+
name: string;
|
|
1308
|
+
family: CoinFamily;
|
|
1309
|
+
explorerUrl: string;
|
|
1310
|
+
accountExplorerUrl: string;
|
|
1311
|
+
chainId: number;
|
|
1312
|
+
nativeCoinOperationHashPrefix: string;
|
|
1313
|
+
}
|
|
1314
|
+
declare class PharosTestnet extends Testnet implements EthereumNetwork {
|
|
1315
|
+
name: string;
|
|
1316
|
+
family: CoinFamily;
|
|
1317
|
+
explorerUrl: string;
|
|
1318
|
+
accountExplorerUrl: string;
|
|
1319
|
+
chainId: number;
|
|
1320
|
+
nativeCoinOperationHashPrefix: string;
|
|
1321
|
+
forwarderFactoryAddress: string;
|
|
1322
|
+
forwarderImplementationAddress: string;
|
|
1323
|
+
walletFactoryAddress: string;
|
|
1324
|
+
walletImplementationAddress: string;
|
|
1325
|
+
batcherContractAddress: string;
|
|
1326
|
+
}
|
|
1327
|
+
declare class Creditcoin extends Mainnet implements EthereumNetwork {
|
|
1328
|
+
name: string;
|
|
1329
|
+
family: CoinFamily;
|
|
1330
|
+
explorerUrl: string;
|
|
1331
|
+
accountExplorerUrl: string;
|
|
1332
|
+
chainId: number;
|
|
1333
|
+
nativeCoinOperationHashPrefix: string;
|
|
1334
|
+
forwarderFactoryAddress: string;
|
|
1335
|
+
forwarderImplementationAddress: string;
|
|
1336
|
+
walletFactoryAddress: string;
|
|
1337
|
+
walletImplementationAddress: string;
|
|
1338
|
+
batcherContractAddress: string;
|
|
1339
|
+
}
|
|
1340
|
+
declare class Plasma extends Mainnet implements EthereumNetwork {
|
|
1341
|
+
name: string;
|
|
1342
|
+
family: CoinFamily;
|
|
1343
|
+
explorerUrl: string;
|
|
1344
|
+
accountExplorerUrl: string;
|
|
1345
|
+
chainId: number;
|
|
1346
|
+
nativeCoinOperationHashPrefix: string;
|
|
1347
|
+
}
|
|
1348
|
+
declare class PlasmaTestnet extends Testnet implements EthereumNetwork {
|
|
1349
|
+
name: string;
|
|
1350
|
+
family: CoinFamily;
|
|
1351
|
+
explorerUrl: string;
|
|
1352
|
+
accountExplorerUrl: string;
|
|
1353
|
+
chainId: number;
|
|
1354
|
+
nativeCoinOperationHashPrefix: string;
|
|
1355
|
+
}
|
|
1356
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1357
|
+
name: string;
|
|
1358
|
+
family: CoinFamily;
|
|
1359
|
+
explorerUrl: string;
|
|
1360
|
+
accountExplorerUrl: string;
|
|
1361
|
+
chainId: number;
|
|
1362
|
+
nativeCoinOperationHashPrefix: string;
|
|
1363
|
+
forwarderFactoryAddress: string;
|
|
1364
|
+
forwarderImplementationAddress: string;
|
|
1365
|
+
walletFactoryAddress: string;
|
|
1366
|
+
walletImplementationAddress: string;
|
|
1367
|
+
batcherContractAddress: string;
|
|
1368
|
+
}
|
|
1369
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1370
|
+
name: string;
|
|
1371
|
+
family: CoinFamily;
|
|
1372
|
+
explorerUrl: string;
|
|
1373
|
+
accountExplorerUrl: string;
|
|
1374
|
+
chainId: number;
|
|
1375
|
+
nativeCoinOperationHashPrefix: string;
|
|
1376
|
+
forwarderFactoryAddress: string;
|
|
1377
|
+
forwarderImplementationAddress: string;
|
|
1378
|
+
walletFactoryAddress: string;
|
|
1379
|
+
walletImplementationAddress: string;
|
|
1380
|
+
batcherContractAddress: string;
|
|
1381
|
+
}
|
|
1382
|
+
declare class KavaEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1383
|
+
name: string;
|
|
1384
|
+
family: CoinFamily;
|
|
1385
|
+
explorerUrl: string;
|
|
1386
|
+
accountExplorerUrl: string;
|
|
1387
|
+
chainId: number;
|
|
1388
|
+
nativeCoinOperationHashPrefix: string;
|
|
1389
|
+
}
|
|
1390
|
+
declare class KavaEVM extends Mainnet implements EthereumNetwork {
|
|
1391
|
+
name: string;
|
|
1392
|
+
family: CoinFamily;
|
|
1393
|
+
explorerUrl: string;
|
|
1394
|
+
accountExplorerUrl: string;
|
|
1395
|
+
chainId: number;
|
|
1396
|
+
nativeCoinOperationHashPrefix: string;
|
|
1397
|
+
}
|
|
1398
|
+
declare class LineaETH 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 LineaETHTestnet 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 FluentETH 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 FluentETHTestnet 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 Mantle 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 MantleTestnet 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 JovayETH extends Mainnet implements EthereumNetwork {
|
|
1447
|
+
name: string;
|
|
1448
|
+
family: CoinFamily;
|
|
1449
|
+
explorerUrl: string;
|
|
1450
|
+
accountExplorerUrl: string;
|
|
1451
|
+
chainId: number;
|
|
1452
|
+
nativeCoinOperationHashPrefix: string;
|
|
1453
|
+
}
|
|
1454
|
+
declare class JovayETHTestnet extends Testnet implements EthereumNetwork {
|
|
1455
|
+
name: string;
|
|
1456
|
+
family: CoinFamily;
|
|
1457
|
+
explorerUrl: string;
|
|
1458
|
+
accountExplorerUrl: string;
|
|
1459
|
+
chainId: number;
|
|
1460
|
+
nativeCoinOperationHashPrefix: string;
|
|
1461
|
+
}
|
|
1462
|
+
declare class Xlayer 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 XlayerTestnet extends Testnet implements EthereumNetwork {
|
|
1471
|
+
name: string;
|
|
1472
|
+
family: CoinFamily;
|
|
1473
|
+
explorerUrl: string;
|
|
1474
|
+
accountExplorerUrl: string;
|
|
1475
|
+
chainId: number;
|
|
1476
|
+
nativeCoinOperationHashPrefix: string;
|
|
1477
|
+
}
|
|
1478
|
+
declare class Morph extends Mainnet implements EthereumNetwork {
|
|
1479
|
+
name: string;
|
|
1480
|
+
family: CoinFamily;
|
|
1481
|
+
explorerUrl: string;
|
|
1482
|
+
accountExplorerUrl: string;
|
|
1483
|
+
chainId: number;
|
|
1484
|
+
nativeCoinOperationHashPrefix: string;
|
|
1485
|
+
}
|
|
1486
|
+
declare class MorphTestnet extends Testnet implements EthereumNetwork {
|
|
1487
|
+
name: string;
|
|
1488
|
+
family: CoinFamily;
|
|
1489
|
+
explorerUrl: string;
|
|
1490
|
+
accountExplorerUrl: string;
|
|
1491
|
+
chainId: number;
|
|
1492
|
+
nativeCoinOperationHashPrefix: string;
|
|
1493
|
+
}
|
|
1494
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1495
|
+
name: string;
|
|
1496
|
+
family: CoinFamily;
|
|
1497
|
+
explorerUrl: string;
|
|
1498
|
+
accountExplorerUrl: string;
|
|
1499
|
+
chainId: number;
|
|
1500
|
+
nativeCoinOperationHashPrefix: string;
|
|
1501
|
+
forwarderFactoryAddress: string;
|
|
1502
|
+
forwarderImplementationAddress: string;
|
|
1503
|
+
walletFactoryAddress: string;
|
|
1504
|
+
walletImplementationAddress: string;
|
|
1505
|
+
batcherContractAddress: string;
|
|
1506
|
+
}
|
|
1507
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1508
|
+
name: string;
|
|
1509
|
+
family: CoinFamily;
|
|
1510
|
+
explorerUrl: string;
|
|
1511
|
+
accountExplorerUrl: string;
|
|
1512
|
+
chainId: number;
|
|
1513
|
+
nativeCoinOperationHashPrefix: string;
|
|
1514
|
+
}
|
|
1515
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1516
|
+
name: string;
|
|
1517
|
+
family: CoinFamily;
|
|
1518
|
+
explorerUrl: string;
|
|
1519
|
+
accountExplorerUrl: string;
|
|
1520
|
+
chainId: number;
|
|
1521
|
+
nativeCoinOperationHashPrefix: string;
|
|
1522
|
+
walletFactoryAddress: string;
|
|
1523
|
+
batcherContractAddress: string;
|
|
1524
|
+
forwarderFactoryAddress: string;
|
|
1525
|
+
forwarderImplementationAddress: string;
|
|
1526
|
+
walletImplementationAddress: string;
|
|
1527
|
+
}
|
|
1528
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1529
|
+
name: string;
|
|
1530
|
+
family: CoinFamily;
|
|
1531
|
+
explorerUrl: string;
|
|
1532
|
+
accountExplorerUrl: string;
|
|
1533
|
+
chainId: number;
|
|
1534
|
+
nativeCoinOperationHashPrefix: string;
|
|
1535
|
+
}
|
|
1536
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1537
|
+
name: string;
|
|
1538
|
+
family: CoinFamily;
|
|
1539
|
+
explorerUrl: string;
|
|
1540
|
+
accountExplorerUrl: string;
|
|
1541
|
+
chainId: number;
|
|
1542
|
+
nativeCoinOperationHashPrefix: string;
|
|
1543
|
+
walletFactoryAddress: string;
|
|
1544
|
+
batcherContractAddress: string;
|
|
1545
|
+
forwarderFactoryAddress: string;
|
|
1546
|
+
forwarderImplementationAddress: string;
|
|
1547
|
+
walletImplementationAddress: string;
|
|
1548
|
+
}
|
|
1549
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1550
|
+
name: string;
|
|
1551
|
+
family: CoinFamily;
|
|
1552
|
+
explorerUrl: string;
|
|
1553
|
+
accountExplorerUrl: string;
|
|
1554
|
+
chainId: number;
|
|
1555
|
+
nativeCoinOperationHashPrefix: string;
|
|
1556
|
+
}
|
|
1557
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1558
|
+
name: string;
|
|
1559
|
+
family: CoinFamily;
|
|
1560
|
+
explorerUrl: string;
|
|
1561
|
+
accountExplorerUrl: string;
|
|
1562
|
+
chainId: number;
|
|
1563
|
+
nativeCoinOperationHashPrefix: string;
|
|
1564
|
+
walletFactoryAddress: string;
|
|
1565
|
+
batcherContractAddress: string;
|
|
1566
|
+
forwarderFactoryAddress: string;
|
|
1567
|
+
forwarderImplementationAddress: string;
|
|
1568
|
+
walletImplementationAddress: string;
|
|
1569
|
+
}
|
|
1570
|
+
declare class Og extends Mainnet implements EthereumNetwork {
|
|
1571
|
+
name: string;
|
|
1572
|
+
family: CoinFamily;
|
|
1573
|
+
explorerUrl: string;
|
|
1574
|
+
accountExplorerUrl: string;
|
|
1575
|
+
chainId: number;
|
|
1576
|
+
nativeCoinOperationHashPrefix: string;
|
|
1577
|
+
}
|
|
1578
|
+
declare class OgTestnet extends Testnet implements EthereumNetwork {
|
|
1579
|
+
name: string;
|
|
1580
|
+
family: CoinFamily;
|
|
1581
|
+
explorerUrl: string;
|
|
1582
|
+
accountExplorerUrl: string;
|
|
1583
|
+
chainId: number;
|
|
1584
|
+
nativeCoinOperationHashPrefix: string;
|
|
1585
|
+
}
|
|
1586
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1587
|
+
name: string;
|
|
1588
|
+
family: CoinFamily;
|
|
1589
|
+
explorerUrl: string;
|
|
1590
|
+
accountExplorerUrl: string;
|
|
1591
|
+
chainId: number;
|
|
1592
|
+
nativeCoinOperationHashPrefix: string;
|
|
1593
|
+
batcherContractAddress: string;
|
|
1594
|
+
forwarderFactoryAddress: string;
|
|
1595
|
+
forwarderImplementationAddress: string;
|
|
1596
|
+
}
|
|
1597
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1598
|
+
name: string;
|
|
1599
|
+
family: CoinFamily;
|
|
1600
|
+
explorerUrl: string;
|
|
1601
|
+
accountExplorerUrl: string;
|
|
1602
|
+
chainId: number;
|
|
1603
|
+
nativeCoinOperationHashPrefix: string;
|
|
1604
|
+
batcherContractAddress: string;
|
|
1605
|
+
forwarderFactoryAddress: string;
|
|
1606
|
+
forwarderImplementationAddress: string;
|
|
1607
|
+
}
|
|
1608
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1609
|
+
name: string;
|
|
1610
|
+
family: CoinFamily;
|
|
1611
|
+
explorerUrl: string;
|
|
1612
|
+
accountExplorerUrl: string;
|
|
1613
|
+
chainId: number;
|
|
1614
|
+
nativeCoinOperationHashPrefix: string;
|
|
1615
|
+
batcherContractAddress: string;
|
|
1616
|
+
forwarderFactoryAddress: string;
|
|
1617
|
+
forwarderImplementationAddress: string;
|
|
1618
|
+
}
|
|
1619
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1620
|
+
name: string;
|
|
1621
|
+
family: CoinFamily;
|
|
1622
|
+
explorerUrl: string;
|
|
1623
|
+
accountExplorerUrl: string;
|
|
1624
|
+
chainId: number;
|
|
1625
|
+
nativeCoinOperationHashPrefix: string;
|
|
1626
|
+
batcherContractAddress: string;
|
|
1627
|
+
forwarderFactoryAddress: string;
|
|
1628
|
+
forwarderImplementationAddress: string;
|
|
1629
|
+
}
|
|
1630
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1631
|
+
name: string;
|
|
1632
|
+
family: CoinFamily;
|
|
1633
|
+
explorerUrl: string;
|
|
1634
|
+
accountExplorerUrl: string;
|
|
1635
|
+
chainId: number;
|
|
1636
|
+
nativeCoinOperationHashPrefix: string;
|
|
1637
|
+
walletFactoryAddress: string;
|
|
1638
|
+
batcherContractAddress: string;
|
|
1639
|
+
forwarderFactoryAddress: string;
|
|
1640
|
+
forwarderImplementationAddress: string;
|
|
1641
|
+
walletImplementationAddress: string;
|
|
1642
|
+
}
|
|
1643
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1644
|
+
name: string;
|
|
1645
|
+
family: CoinFamily;
|
|
1646
|
+
explorerUrl: string;
|
|
1647
|
+
chainId: number;
|
|
1648
|
+
nativeCoinOperationHashPrefix: string;
|
|
1649
|
+
walletImplementationAddress: string;
|
|
1650
|
+
batcherContractAddress: string;
|
|
1651
|
+
forwarderFactoryAddress: string;
|
|
1652
|
+
forwarderImplementationAddress: string;
|
|
1653
|
+
}
|
|
1654
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1655
|
+
name: string;
|
|
1656
|
+
family: CoinFamily;
|
|
1657
|
+
explorerUrl: string;
|
|
1658
|
+
accountExplorerUrl: string;
|
|
1659
|
+
chainId: number;
|
|
1660
|
+
nativeCoinOperationHashPrefix: string;
|
|
1661
|
+
walletImplementationAddress: string;
|
|
1662
|
+
batcherContractAddress: string;
|
|
1663
|
+
forwarderFactoryAddress: string;
|
|
1664
|
+
forwarderImplementationAddress: string;
|
|
1665
|
+
}
|
|
1666
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1667
|
+
name: string;
|
|
1668
|
+
family: CoinFamily;
|
|
1669
|
+
explorerUrl: string;
|
|
1670
|
+
accountExplorerUrl: string;
|
|
1671
|
+
chainId: number;
|
|
1672
|
+
nativeCoinOperationHashPrefix: string;
|
|
1673
|
+
batcherContractAddress: string;
|
|
1674
|
+
forwarderFactoryAddress: string;
|
|
1675
|
+
forwarderImplementationAddress: string;
|
|
1676
|
+
walletImplementationAddress: string;
|
|
1677
|
+
}
|
|
1678
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1679
|
+
name: string;
|
|
1680
|
+
family: CoinFamily;
|
|
1681
|
+
explorerUrl: string;
|
|
1682
|
+
accountExplorerUrl: string;
|
|
1683
|
+
chainId: number;
|
|
1684
|
+
nativeCoinOperationHashPrefix: string;
|
|
1685
|
+
walletImplementationAddress: string;
|
|
1686
|
+
walletFactoryAddress: string;
|
|
1687
|
+
batcherContractAddress: string;
|
|
1688
|
+
forwarderFactoryAddress: string;
|
|
1689
|
+
forwarderImplementationAddress: string;
|
|
1690
|
+
}
|
|
1691
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1692
|
+
name: string;
|
|
1693
|
+
family: CoinFamily;
|
|
1694
|
+
explorerUrl: string;
|
|
1695
|
+
accountExplorerUrl: string;
|
|
1696
|
+
chainId: number;
|
|
1697
|
+
nativeCoinOperationHashPrefix: string;
|
|
1698
|
+
walletFactoryAddress: string;
|
|
1699
|
+
batcherContractAddress: string;
|
|
1700
|
+
forwarderFactoryAddress: string;
|
|
1701
|
+
forwarderImplementationAddress: string;
|
|
1702
|
+
walletImplementationAddress: string;
|
|
1703
|
+
}
|
|
1704
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1705
|
+
name: string;
|
|
1706
|
+
family: CoinFamily;
|
|
1707
|
+
explorerUrl: string;
|
|
1708
|
+
accountExplorerUrl: string;
|
|
1709
|
+
chainId: number;
|
|
1710
|
+
nativeCoinOperationHashPrefix: string;
|
|
1711
|
+
}
|
|
1712
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1713
|
+
name: string;
|
|
1714
|
+
family: CoinFamily;
|
|
1715
|
+
explorerUrl: string;
|
|
1716
|
+
accountExplorerUrl: string;
|
|
1717
|
+
chainId: number;
|
|
1718
|
+
nativeCoinOperationHashPrefix: string;
|
|
1719
|
+
walletFactoryAddress: string;
|
|
1720
|
+
batcherContractAddress: string;
|
|
1721
|
+
forwarderFactoryAddress: string;
|
|
1722
|
+
forwarderImplementationAddress: string;
|
|
1723
|
+
walletImplementationAddress: string;
|
|
1724
|
+
}
|
|
1725
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1726
|
+
name: string;
|
|
1727
|
+
family: CoinFamily;
|
|
1728
|
+
explorerUrl: string;
|
|
1729
|
+
accountExplorerUrl: string;
|
|
1730
|
+
chainId: number;
|
|
1731
|
+
nativeCoinOperationHashPrefix: string;
|
|
1732
|
+
walletFactoryAddress: string;
|
|
1733
|
+
batcherContractAddress: string;
|
|
1734
|
+
forwarderFactoryAddress: string;
|
|
1735
|
+
forwarderImplementationAddress: string;
|
|
1736
|
+
walletImplementationAddress: string;
|
|
1737
|
+
}
|
|
1738
|
+
declare class Somi extends Mainnet implements EthereumNetwork {
|
|
1739
|
+
name: string;
|
|
1740
|
+
family: CoinFamily;
|
|
1741
|
+
explorerUrl: string;
|
|
1742
|
+
chainId: number;
|
|
1743
|
+
nativeCoinOperationHashPrefix: string;
|
|
1744
|
+
walletImplementationAddress: string;
|
|
1745
|
+
walletFactoryAddress: string;
|
|
1746
|
+
forwarderImplementationAddress: string;
|
|
1747
|
+
forwarderFactoryAddress: string;
|
|
1748
|
+
batcherContractAddress: string;
|
|
1749
|
+
}
|
|
1750
|
+
export declare class FlareP extends Mainnet implements FlareNetwork {
|
|
1751
|
+
assetId: string;
|
|
1752
|
+
name: string;
|
|
1753
|
+
family: CoinFamily;
|
|
1754
|
+
explorerUrl: string;
|
|
1755
|
+
accountExplorerUrl: string;
|
|
1756
|
+
blockchainID: string;
|
|
1757
|
+
cChainBlockchainID: string;
|
|
1758
|
+
xChainBlockchainID: string;
|
|
1759
|
+
networkID: number;
|
|
1760
|
+
hrp: string;
|
|
1761
|
+
alias: string;
|
|
1762
|
+
vm: string;
|
|
1763
|
+
minImportToPFee: string;
|
|
1764
|
+
txFee: string;
|
|
1765
|
+
baseTxFee: string;
|
|
1766
|
+
maxImportFee: string;
|
|
1767
|
+
createAssetTxFee: string;
|
|
1768
|
+
createSubnetTx: string;
|
|
1769
|
+
transformSubnetTxFee: string;
|
|
1770
|
+
createChainTx: string;
|
|
1771
|
+
creationTxFee: string;
|
|
1772
|
+
minConsumption: string;
|
|
1773
|
+
maxConsumption: string;
|
|
1774
|
+
maxSupply: string;
|
|
1775
|
+
minStake: string;
|
|
1776
|
+
minStakeDuration: string;
|
|
1777
|
+
maxStakeDuration: string;
|
|
1778
|
+
minDelegationStake: string;
|
|
1779
|
+
minDelegationFee: string;
|
|
1780
|
+
addPrimaryNetworkValidatorFee: string;
|
|
1781
|
+
addSubnetValidatorFee: string;
|
|
1782
|
+
addSubnetDelegatorFee: string;
|
|
1783
|
+
}
|
|
1784
|
+
export declare class FlarePTestnet extends Testnet implements FlareNetwork {
|
|
1785
|
+
name: string;
|
|
1786
|
+
family: CoinFamily;
|
|
1787
|
+
explorerUrl: string;
|
|
1788
|
+
accountExplorerUrl: string;
|
|
1789
|
+
flarePublicUrl: string;
|
|
1790
|
+
blockchainID: string;
|
|
1791
|
+
cChainBlockchainID: string;
|
|
1792
|
+
xChainBlockchainID: string;
|
|
1793
|
+
networkID: number;
|
|
1794
|
+
hrp: string;
|
|
1795
|
+
alias: string;
|
|
1796
|
+
assetId: string;
|
|
1797
|
+
vm: string;
|
|
1798
|
+
minImportToPFee: string;
|
|
1799
|
+
txFee: string;
|
|
1800
|
+
baseTxFee: string;
|
|
1801
|
+
maxImportFee: string;
|
|
1802
|
+
createAssetTxFee: string;
|
|
1803
|
+
createSubnetTx: string;
|
|
1804
|
+
transformSubnetTxFee: string;
|
|
1805
|
+
createChainTx: string;
|
|
1806
|
+
creationTxFee: string;
|
|
1807
|
+
minConsumption: string;
|
|
1808
|
+
maxConsumption: string;
|
|
1809
|
+
maxSupply: string;
|
|
1810
|
+
minStake: string;
|
|
1811
|
+
minStakeDuration: string;
|
|
1812
|
+
maxStakeDuration: string;
|
|
1813
|
+
minDelegationStake: string;
|
|
1814
|
+
minDelegationFee: string;
|
|
1815
|
+
addPrimaryNetworkValidatorFee: string;
|
|
1816
|
+
addSubnetValidatorFee: string;
|
|
1817
|
+
addSubnetDelegatorFee: string;
|
|
1818
|
+
}
|
|
1819
|
+
export declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1820
|
+
name: string;
|
|
1821
|
+
family: CoinFamily;
|
|
1822
|
+
explorerUrl: string;
|
|
1823
|
+
accountExplorerUrl: string;
|
|
1824
|
+
flarePublicUrl: string;
|
|
1825
|
+
chainId: number;
|
|
1826
|
+
nativeCoinOperationHashPrefix: string;
|
|
1827
|
+
walletFactoryAddress: string;
|
|
1828
|
+
walletImplementationAddress: string;
|
|
1829
|
+
batcherContractAddress: string;
|
|
1830
|
+
forwarderFactoryAddress: string;
|
|
1831
|
+
forwarderImplementationAddress: string;
|
|
1832
|
+
}
|
|
1833
|
+
export declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1834
|
+
name: string;
|
|
1835
|
+
family: CoinFamily;
|
|
1836
|
+
explorerUrl: string;
|
|
1837
|
+
accountExplorerUrl: string;
|
|
1838
|
+
chainId: number;
|
|
1839
|
+
nativeCoinOperationHashPrefix: string;
|
|
1840
|
+
walletFactoryAddress: string;
|
|
1841
|
+
walletImplementationAddress: string;
|
|
1842
|
+
batcherContractAddress: string;
|
|
1843
|
+
forwarderFactoryAddress: string;
|
|
1844
|
+
forwarderImplementationAddress: string;
|
|
1845
|
+
}
|
|
1846
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1847
|
+
name: string;
|
|
1848
|
+
family: CoinFamily;
|
|
1849
|
+
explorerUrl: string;
|
|
1850
|
+
accountExplorerUrl: string;
|
|
1851
|
+
chainId: number;
|
|
1852
|
+
nativeCoinOperationHashPrefix: string;
|
|
1853
|
+
batcherContractAddress: string;
|
|
1854
|
+
forwarderFactoryAddress: string;
|
|
1855
|
+
forwarderImplementationAddress: string;
|
|
1856
|
+
}
|
|
1857
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1858
|
+
name: string;
|
|
1859
|
+
family: CoinFamily;
|
|
1860
|
+
explorerUrl: string;
|
|
1861
|
+
accountExplorerUrl: string;
|
|
1862
|
+
chainId: number;
|
|
1863
|
+
nativeCoinOperationHashPrefix: string;
|
|
1864
|
+
batcherContractAddress: string;
|
|
1865
|
+
forwarderFactoryAddress: string;
|
|
1866
|
+
forwarderImplementationAddress: string;
|
|
1867
|
+
}
|
|
1868
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1869
|
+
name: string;
|
|
1870
|
+
family: CoinFamily;
|
|
1871
|
+
explorerUrl: string;
|
|
1872
|
+
accountExplorerUrl: string;
|
|
1873
|
+
chainId: number;
|
|
1874
|
+
nativeCoinOperationHashPrefix: string;
|
|
1875
|
+
tokenOperationHashPrefix: string;
|
|
1876
|
+
forwarderFactoryAddress: string;
|
|
1877
|
+
forwarderImplementationAddress: string;
|
|
1878
|
+
walletFactoryAddress: string;
|
|
1879
|
+
walletImplementationAddress: string;
|
|
1880
|
+
}
|
|
1881
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1882
|
+
name: string;
|
|
1883
|
+
family: CoinFamily;
|
|
1884
|
+
explorerUrl: string;
|
|
1885
|
+
accountExplorerUrl: string;
|
|
1886
|
+
chainId: number;
|
|
1887
|
+
nativeCoinOperationHashPrefix: string;
|
|
1888
|
+
tokenOperationHashPrefix: string;
|
|
1889
|
+
forwarderFactoryAddress: string;
|
|
1890
|
+
forwarderImplementationAddress: string;
|
|
1891
|
+
walletFactoryAddress: string;
|
|
1892
|
+
walletImplementationAddress: string;
|
|
1893
|
+
}
|
|
1894
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1895
|
+
name: string;
|
|
1896
|
+
family: CoinFamily;
|
|
1897
|
+
explorerUrl: string;
|
|
1898
|
+
specName: string;
|
|
1899
|
+
genesisHash: string;
|
|
1900
|
+
specVersion: number;
|
|
1901
|
+
chainName: string;
|
|
1902
|
+
txVersion: number;
|
|
1903
|
+
}
|
|
1904
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1905
|
+
name: string;
|
|
1906
|
+
family: CoinFamily;
|
|
1907
|
+
explorerUrl: string;
|
|
1908
|
+
specName: SubstrateSpecNameType;
|
|
1909
|
+
genesisHash: string;
|
|
1910
|
+
specVersion: number;
|
|
1911
|
+
chainName: string;
|
|
1912
|
+
txVersion: number;
|
|
1913
|
+
}
|
|
1914
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1915
|
+
name: string;
|
|
1916
|
+
family: CoinFamily;
|
|
1917
|
+
explorerUrl: string;
|
|
1918
|
+
accountExplorerUrl: string;
|
|
1919
|
+
chainId: number;
|
|
1920
|
+
forwarderFactoryAddress: string;
|
|
1921
|
+
forwarderImplementationAddress: string;
|
|
1922
|
+
}
|
|
1923
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1924
|
+
name: string;
|
|
1925
|
+
family: CoinFamily;
|
|
1926
|
+
explorerUrl: string;
|
|
1927
|
+
accountExplorerUrl: string;
|
|
1928
|
+
chainId: number;
|
|
1929
|
+
forwarderFactoryAddress: string;
|
|
1930
|
+
forwarderImplementationAddress: string;
|
|
1931
|
+
}
|
|
1932
|
+
declare class Iota extends Mainnet implements AccountNetwork {
|
|
1933
|
+
name: string;
|
|
1934
|
+
family: CoinFamily;
|
|
1935
|
+
explorerUrl: string;
|
|
1936
|
+
accountExplorerUrl: string;
|
|
1937
|
+
}
|
|
1938
|
+
declare class IotaTestnet extends Testnet implements AccountNetwork {
|
|
1939
|
+
name: string;
|
|
1940
|
+
family: CoinFamily;
|
|
1941
|
+
explorerUrl: string;
|
|
1942
|
+
accountExplorerUrl: string;
|
|
1943
|
+
}
|
|
1944
|
+
declare class Flow extends Mainnet implements EthereumNetwork {
|
|
1945
|
+
name: string;
|
|
1946
|
+
family: CoinFamily;
|
|
1947
|
+
explorerUrl: string;
|
|
1948
|
+
accountExplorerUrl: string;
|
|
1949
|
+
chainId: number;
|
|
1950
|
+
nativeCoinOperationHashPrefix: string;
|
|
1951
|
+
}
|
|
1952
|
+
declare class FlowTestnet extends Testnet implements EthereumNetwork {
|
|
1953
|
+
name: string;
|
|
1954
|
+
family: CoinFamily;
|
|
1955
|
+
explorerUrl: string;
|
|
1956
|
+
accountExplorerUrl: string;
|
|
1957
|
+
chainId: number;
|
|
1958
|
+
nativeCoinOperationHashPrefix: string;
|
|
1959
|
+
}
|
|
1960
|
+
declare class MegaETH extends Mainnet implements EthereumNetwork {
|
|
1961
|
+
name: string;
|
|
1962
|
+
family: CoinFamily;
|
|
1963
|
+
explorerUrl: string;
|
|
1964
|
+
accountExplorerUrl: string;
|
|
1965
|
+
chainId: number;
|
|
1966
|
+
nativeCoinOperationHashPrefix: string;
|
|
1967
|
+
}
|
|
1968
|
+
declare class MegaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1969
|
+
name: string;
|
|
1970
|
+
family: CoinFamily;
|
|
1971
|
+
explorerUrl: string;
|
|
1972
|
+
accountExplorerUrl: string;
|
|
1973
|
+
chainId: number;
|
|
1974
|
+
nativeCoinOperationHashPrefix: string;
|
|
1975
|
+
}
|
|
1976
|
+
declare class Plume extends Mainnet implements EthereumNetwork {
|
|
1977
|
+
name: string;
|
|
1978
|
+
family: CoinFamily;
|
|
1979
|
+
explorerUrl: string;
|
|
1980
|
+
accountExplorerUrl: string;
|
|
1981
|
+
chainId: number;
|
|
1982
|
+
nativeCoinOperationHashPrefix: string;
|
|
1983
|
+
}
|
|
1984
|
+
declare class HederaEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1985
|
+
name: string;
|
|
1986
|
+
family: CoinFamily;
|
|
1987
|
+
explorerUrl: string;
|
|
1988
|
+
accountExplorerUrl: string;
|
|
1989
|
+
chainId: number;
|
|
1990
|
+
nativeCoinOperationHashPrefix: string;
|
|
1991
|
+
}
|
|
1992
|
+
declare class HederaEVM extends Mainnet implements EthereumNetwork {
|
|
1993
|
+
name: string;
|
|
1994
|
+
family: CoinFamily;
|
|
1995
|
+
explorerUrl: string;
|
|
1996
|
+
accountExplorerUrl: string;
|
|
1997
|
+
chainId: number;
|
|
1998
|
+
nativeCoinOperationHashPrefix: string;
|
|
1999
|
+
}
|
|
2000
|
+
declare class PlumeTestnet extends Testnet implements EthereumNetwork {
|
|
2001
|
+
name: string;
|
|
2002
|
+
family: CoinFamily;
|
|
2003
|
+
explorerUrl: string;
|
|
2004
|
+
accountExplorerUrl: string;
|
|
2005
|
+
chainId: number;
|
|
2006
|
+
nativeCoinOperationHashPrefix: string;
|
|
2007
|
+
}
|
|
2008
|
+
declare class Canton extends Mainnet implements BaseNetwork {
|
|
2009
|
+
name: string;
|
|
2010
|
+
family: CoinFamily;
|
|
2011
|
+
explorerUrl: string;
|
|
2012
|
+
}
|
|
2013
|
+
declare class CantonTestnet extends Testnet implements BaseNetwork {
|
|
2014
|
+
name: string;
|
|
2015
|
+
family: CoinFamily;
|
|
2016
|
+
explorerUrl: string;
|
|
2017
|
+
}
|
|
2018
|
+
declare class Dogeos extends Mainnet implements EthereumNetwork {
|
|
2019
|
+
name: string;
|
|
2020
|
+
family: CoinFamily;
|
|
2021
|
+
explorerUrl: string;
|
|
2022
|
+
accountExplorerUrl: string;
|
|
2023
|
+
chainId: number;
|
|
2024
|
+
nativeCoinOperationHashPrefix: string;
|
|
2025
|
+
}
|
|
2026
|
+
declare class DogeosTestnet extends Testnet implements EthereumNetwork {
|
|
2027
|
+
name: string;
|
|
2028
|
+
family: CoinFamily;
|
|
2029
|
+
explorerUrl: string;
|
|
2030
|
+
accountExplorerUrl: string;
|
|
2031
|
+
chainId: number;
|
|
2032
|
+
nativeCoinOperationHashPrefix: string;
|
|
2033
|
+
}
|
|
2034
|
+
declare class ArcUSDCTestnet extends Testnet implements EthereumNetwork {
|
|
2035
|
+
name: string;
|
|
2036
|
+
family: CoinFamily;
|
|
2037
|
+
explorerUrl: string;
|
|
2038
|
+
accountExplorerUrl: string;
|
|
2039
|
+
chainId: number;
|
|
2040
|
+
nativeCoinOperationHashPrefix: string;
|
|
2041
|
+
}
|
|
2042
|
+
declare class ArcUSDC extends Mainnet implements EthereumNetwork {
|
|
2043
|
+
name: string;
|
|
2044
|
+
family: CoinFamily;
|
|
2045
|
+
explorerUrl: string;
|
|
2046
|
+
accountExplorerUrl: string;
|
|
2047
|
+
chainId: number;
|
|
2048
|
+
nativeCoinOperationHashPrefix: string;
|
|
2049
|
+
}
|
|
2050
|
+
declare class Tempo extends Mainnet implements EthereumNetwork {
|
|
2051
|
+
name: string;
|
|
2052
|
+
family: CoinFamily;
|
|
2053
|
+
explorerUrl: string;
|
|
2054
|
+
accountExplorerUrl: string;
|
|
2055
|
+
chainId: number;
|
|
2056
|
+
nativeCoinOperationHashPrefix: string;
|
|
2057
|
+
tokenOperationHashPrefix: string;
|
|
2058
|
+
}
|
|
2059
|
+
declare class TempoTestnet extends Testnet implements EthereumNetwork {
|
|
2060
|
+
name: string;
|
|
2061
|
+
family: CoinFamily;
|
|
2062
|
+
explorerUrl: string;
|
|
2063
|
+
accountExplorerUrl: string;
|
|
2064
|
+
chainId: number;
|
|
2065
|
+
nativeCoinOperationHashPrefix: string;
|
|
2066
|
+
tokenOperationHashPrefix: string;
|
|
761
2067
|
}
|
|
762
2068
|
export declare const Networks: {
|
|
763
2069
|
main: {
|
|
764
2070
|
ada: Readonly<Ada>;
|
|
765
2071
|
algorand: Readonly<Algorand>;
|
|
2072
|
+
apechain: Readonly<ApeChain>;
|
|
2073
|
+
apt: Readonly<Apt>;
|
|
766
2074
|
arbitrum: Readonly<Arbitrum>;
|
|
2075
|
+
arcusdc: Readonly<ArcUSDC>;
|
|
2076
|
+
asi: Readonly<Asi>;
|
|
767
2077
|
atom: Readonly<Atom>;
|
|
768
2078
|
avalancheC: Readonly<AvalancheC>;
|
|
769
2079
|
avalancheP: Readonly<AvalancheP>;
|
|
2080
|
+
baby: Readonly<Baby>;
|
|
2081
|
+
basechain: Readonly<BaseChain>;
|
|
770
2082
|
bitcoin: Readonly<Bitcoin>;
|
|
771
2083
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
772
2084
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
773
2085
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
774
|
-
bera: Readonly<
|
|
2086
|
+
bera: Readonly<Berachain>;
|
|
775
2087
|
bld: Readonly<Bld>;
|
|
776
2088
|
bsc: Readonly<BinanceSmartChain>;
|
|
2089
|
+
canton: Readonly<Canton>;
|
|
777
2090
|
casper: Readonly<Casper>;
|
|
778
2091
|
celo: Readonly<Celo>;
|
|
779
|
-
|
|
2092
|
+
coredao: Readonly<Coredao>;
|
|
2093
|
+
coreum: Readonly<Coreum>;
|
|
2094
|
+
cronos: Readonly<Cronos>;
|
|
780
2095
|
dash: Readonly<Dash>;
|
|
781
2096
|
dogecoin: Readonly<Dogecoin>;
|
|
782
|
-
|
|
2097
|
+
dogeos: Readonly<Dogeos>;
|
|
2098
|
+
dot: Readonly<PolkadotAssetHub>;
|
|
783
2099
|
eCash: Readonly<ECash>;
|
|
784
2100
|
eos: Readonly<Eos>;
|
|
785
2101
|
ethereum: Readonly<Ethereum>;
|
|
@@ -787,85 +2103,191 @@ export declare const Networks: {
|
|
|
787
2103
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
788
2104
|
ethereumW: Readonly<EthereumW>;
|
|
789
2105
|
fiat: Readonly<Fiat>;
|
|
2106
|
+
fetchai: Readonly<FetchAi>;
|
|
2107
|
+
flow: Readonly<Flow>;
|
|
2108
|
+
flr: Readonly<Flare>;
|
|
2109
|
+
flrP: Readonly<FlareP>;
|
|
2110
|
+
fluenteth: Readonly<FluentETH>;
|
|
790
2111
|
hash: Readonly<Hash>;
|
|
791
2112
|
hedera: Readonly<Hedera>;
|
|
2113
|
+
hederaEVM: Readonly<HederaEVM>;
|
|
2114
|
+
icp: Readonly<Icp>;
|
|
2115
|
+
ip: Readonly<IP>;
|
|
2116
|
+
initia: Readonly<Initia>;
|
|
2117
|
+
iota: Readonly<Iota>;
|
|
792
2118
|
injective: Readonly<Injective>;
|
|
2119
|
+
irys: Readonly<Irys>;
|
|
793
2120
|
islm: Readonly<Islm>;
|
|
2121
|
+
jovayeth: Readonly<JovayETH>;
|
|
2122
|
+
kaia: Readonly<Kaia>;
|
|
794
2123
|
kava: Readonly<Kava>;
|
|
2124
|
+
kavaevm: Readonly<KavaEVM>;
|
|
2125
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
795
2126
|
litecoin: Readonly<Litecoin>;
|
|
2127
|
+
megaeth: Readonly<MegaETH>;
|
|
2128
|
+
mon: Readonly<Monad>;
|
|
2129
|
+
mantle: Readonly<Mantle>;
|
|
2130
|
+
mantra: Readonly<Mantra>;
|
|
2131
|
+
plume: Readonly<Plume>;
|
|
796
2132
|
polygon: Readonly<Polygon>;
|
|
2133
|
+
polyx: Readonly<Polymesh>;
|
|
2134
|
+
phrs: Readonly<Pharos>;
|
|
2135
|
+
ctc: Readonly<Creditcoin>;
|
|
2136
|
+
hypeevm: Readonly<HypeEVM>;
|
|
2137
|
+
lineaeth: Readonly<LineaETH>;
|
|
2138
|
+
oas: Readonly<Oas>;
|
|
2139
|
+
og: Readonly<Og>;
|
|
797
2140
|
ofc: Readonly<Ofc>;
|
|
2141
|
+
okb: Readonly<Xlayer>;
|
|
2142
|
+
opbnb: Readonly<OpBNB>;
|
|
2143
|
+
fantom: Readonly<Fantom>;
|
|
2144
|
+
morph: Readonly<Morph>;
|
|
798
2145
|
optimism: Readonly<Optimism>;
|
|
799
2146
|
osmo: Readonly<Osmo>;
|
|
800
2147
|
rbtc: Readonly<Rbtc>;
|
|
2148
|
+
rune: Readonly<Rune>;
|
|
801
2149
|
stellar: Readonly<Stellar>;
|
|
802
2150
|
sei: Readonly<Sei>;
|
|
2151
|
+
seievm: Readonly<SeiEvm>;
|
|
2152
|
+
sgb: Readonly<Songbird>;
|
|
803
2153
|
sol: Readonly<Sol>;
|
|
2154
|
+
sonic: Readonly<Sonic>;
|
|
804
2155
|
sui: Readonly<Sui>;
|
|
805
2156
|
near: Readonly<Near>;
|
|
806
2157
|
stx: Readonly<Stx>;
|
|
2158
|
+
somi: Readonly<Somi>;
|
|
2159
|
+
soneium: Readonly<Soneium>;
|
|
807
2160
|
susd: Readonly<SUSD>;
|
|
2161
|
+
tao: Readonly<Bittensor>;
|
|
2162
|
+
tempo: Readonly<Tempo>;
|
|
808
2163
|
tia: Readonly<Tia>;
|
|
809
2164
|
ton: Readonly<Ton>;
|
|
810
2165
|
trx: Readonly<Trx>;
|
|
2166
|
+
vet: Readonly<Vet>;
|
|
2167
|
+
wemix: Readonly<Wemix>;
|
|
2168
|
+
world: Readonly<World>;
|
|
2169
|
+
xdc: Readonly<Xdc>;
|
|
2170
|
+
xpl: Readonly<Plasma>;
|
|
811
2171
|
xrp: Readonly<Xrp>;
|
|
812
2172
|
xtz: Readonly<Xtz>;
|
|
813
2173
|
zCash: Readonly<ZCash>;
|
|
814
2174
|
zeta: Readonly<Zeta>;
|
|
2175
|
+
zkSync: Readonly<ZkSync>;
|
|
2176
|
+
zkSyncEra: Readonly<ZkSyncEra>;
|
|
815
2177
|
};
|
|
816
2178
|
test: {
|
|
817
2179
|
ada: Readonly<AdaTestnet>;
|
|
818
2180
|
algorand: Readonly<AlgorandTestnet>;
|
|
2181
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
2182
|
+
apt: Readonly<AptTestnet>;
|
|
819
2183
|
arbitrum: Readonly<ArbitrumTestnet>;
|
|
2184
|
+
arcusdc: Readonly<ArcUSDCTestnet>;
|
|
2185
|
+
asi: Readonly<AsiTestnet>;
|
|
820
2186
|
atom: Readonly<AtomTestnet>;
|
|
821
2187
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
822
2188
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
2189
|
+
baby: Readonly<BabyTestnet>;
|
|
2190
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
823
2191
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
2192
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
2193
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
2194
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
824
2195
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
825
2196
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
826
2197
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
827
|
-
bera: Readonly<
|
|
2198
|
+
bera: Readonly<BerachainTestnet>;
|
|
828
2199
|
bld: Readonly<BldTestnet>;
|
|
829
2200
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
2201
|
+
canton: Readonly<CantonTestnet>;
|
|
830
2202
|
casper: Readonly<CasperTestnet>;
|
|
2203
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
831
2204
|
celo: Readonly<CeloTestnet>;
|
|
2205
|
+
cronos: Readonly<CronosTestnet>;
|
|
832
2206
|
dash: Readonly<DashTestnet>;
|
|
833
2207
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
834
|
-
|
|
2208
|
+
dogeos: Readonly<DogeosTestnet>;
|
|
2209
|
+
dot: Readonly<WestendAssetHub>;
|
|
835
2210
|
eCash: Readonly<ECashTestnet>;
|
|
836
2211
|
eos: Readonly<EosTestnet>;
|
|
837
2212
|
fiat: Readonly<FiatTestnet>;
|
|
2213
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
2214
|
+
flow: Readonly<FlowTestnet>;
|
|
2215
|
+
flr: Readonly<FlareTestnet>;
|
|
2216
|
+
flrP: Readonly<FlarePTestnet>;
|
|
2217
|
+
fluenteth: Readonly<FluentETHTestnet>;
|
|
2218
|
+
mon: Readonly<MonadTestnet>;
|
|
2219
|
+
megaeth: Readonly<MegaETHTestnet>;
|
|
838
2220
|
pyrmont: Readonly<Pyrmont>;
|
|
2221
|
+
plume: Readonly<PlumeTestnet>;
|
|
839
2222
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
840
2223
|
hash: Readonly<HashTestnet>;
|
|
841
2224
|
hedera: Readonly<HederaTestnet>;
|
|
2225
|
+
hederaEVM: Readonly<HederaEVMTestnet>;
|
|
2226
|
+
icp: Readonly<IcpTestnet>;
|
|
2227
|
+
ip: Readonly<IPTestnet>;
|
|
2228
|
+
initia: Readonly<InitiaTestnet>;
|
|
842
2229
|
injective: Readonly<InjectiveTestnet>;
|
|
2230
|
+
iota: Readonly<IotaTestnet>;
|
|
2231
|
+
irys: Readonly<IrysTestnet>;
|
|
843
2232
|
islm: Readonly<IslmTestnet>;
|
|
2233
|
+
jovayeth: Readonly<JovayETHTestnet>;
|
|
844
2234
|
kava: Readonly<KavaTestnet>;
|
|
2235
|
+
kavaevm: Readonly<KavaEVMTestnet>;
|
|
845
2236
|
kovan: Readonly<Kovan>;
|
|
846
2237
|
goerli: Readonly<Goerli>;
|
|
847
2238
|
holesky: Readonly<Holesky>;
|
|
2239
|
+
hoodi: Readonly<Hoodi>;
|
|
2240
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
848
2241
|
litecoin: Readonly<LitecoinTestnet>;
|
|
2242
|
+
mantle: Readonly<MantleTestnet>;
|
|
2243
|
+
mantra: Readonly<MantraTestnet>;
|
|
849
2244
|
polygon: Readonly<PolygonTestnet>;
|
|
2245
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
2246
|
+
phrs: Readonly<PharosTestnet>;
|
|
2247
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
2248
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
2249
|
+
lineaeth: Readonly<LineaETHTestnet>;
|
|
2250
|
+
oas: Readonly<OasTestnet>;
|
|
2251
|
+
og: Readonly<OgTestnet>;
|
|
850
2252
|
ofc: Readonly<OfcTestnet>;
|
|
2253
|
+
okb: Readonly<XlayerTestnet>;
|
|
2254
|
+
opbnb: Readonly<OpBNBTestnet>;
|
|
2255
|
+
fantom: Readonly<FantomTestnet>;
|
|
2256
|
+
morph: Readonly<MorphTestnet>;
|
|
851
2257
|
optimism: Readonly<OptimismTestnet>;
|
|
852
2258
|
osmo: Readonly<OsmoTestnet>;
|
|
853
2259
|
rbtc: Readonly<RbtcTestnet>;
|
|
2260
|
+
rune: Readonly<RuneTestNet>;
|
|
2261
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
854
2262
|
stellar: Readonly<StellarTestnet>;
|
|
855
2263
|
sei: Readonly<SeiTestnet>;
|
|
2264
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
856
2265
|
sol: Readonly<SolTestnet>;
|
|
857
2266
|
sui: Readonly<SuiTestnet>;
|
|
858
2267
|
near: Readonly<NearTestnet>;
|
|
859
2268
|
stx: Readonly<StxTestnet>;
|
|
2269
|
+
stt: Readonly<SomniaTestnet>;
|
|
2270
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
2271
|
+
sonic: Readonly<SonicTestnet>;
|
|
2272
|
+
kaia: Readonly<KaiaTestnet>;
|
|
860
2273
|
susd: Readonly<SUSDTestnet>;
|
|
861
|
-
|
|
2274
|
+
coreum: Readonly<CoreumTestnet>;
|
|
2275
|
+
tao: Readonly<BittensorTestnet>;
|
|
2276
|
+
tempo: Readonly<TempoTestnet>;
|
|
862
2277
|
tia: Readonly<TiaTestnet>;
|
|
863
2278
|
ton: Readonly<TonTestnet>;
|
|
864
2279
|
trx: Readonly<TrxTestnet>;
|
|
2280
|
+
vet: Readonly<VetTestnet>;
|
|
2281
|
+
wemix: Readonly<WemixTestnet>;
|
|
2282
|
+
world: Readonly<WorldTestnet>;
|
|
2283
|
+
xdc: Readonly<XdcTestnet>;
|
|
2284
|
+
xpl: Readonly<PlasmaTestnet>;
|
|
865
2285
|
xrp: Readonly<XrpTestnet>;
|
|
866
2286
|
xtz: Readonly<XtzTestnet>;
|
|
867
2287
|
zCash: Readonly<ZCashTestnet>;
|
|
868
2288
|
zeta: Readonly<ZetaTestnet>;
|
|
2289
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
2290
|
+
zkSyncEra: Readonly<ZkSyncEraTestnet>;
|
|
869
2291
|
};
|
|
870
2292
|
};
|
|
871
2293
|
export {};
|