@bitgo-beta/statics 15.1.1-beta.182 → 15.1.1-beta.1821
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 +1130 -75
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1780 -160
- 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 +1685 -0
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +9 -3
- package/dist/src/base.d.ts +2514 -53
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +2624 -63
- 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 +117 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +766 -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 +22 -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 +130 -0
- package/dist/src/coins/botOfcTokens.d.ts +3 -0
- package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
- package/dist/src/coins/botOfcTokens.js +52 -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 +212 -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 +216 -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 +22 -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 +2046 -0
- package/dist/src/coins/erc7984Tokens.d.ts +18 -0
- package/dist/src/coins/erc7984Tokens.d.ts.map +1 -0
- package/dist/src/coins/erc7984Tokens.js +32 -0
- package/dist/src/coins/generateERC20.d.ts +36 -0
- package/dist/src/coins/generateERC20.d.ts.map +1 -0
- package/dist/src/coins/generateERC20.js +46 -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 +19 -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 +18 -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 +1124 -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 +1857 -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 +201 -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 +492 -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 +22 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +451 -1695
- 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 +68 -0
- package/dist/src/hypeevm.d.ts +28 -0
- package/dist/src/hypeevm.d.ts.map +1 -0
- package/dist/src/hypeevm.js +60 -0
- package/dist/src/index.d.ts +5 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +41 -3
- package/dist/src/kaspa.d.ts +34 -0
- package/dist/src/kaspa.d.ts.map +1 -0
- package/dist/src/kaspa.js +63 -0
- package/dist/src/lightning.d.ts +43 -0
- package/dist/src/lightning.d.ts.map +1 -0
- package/dist/src/lightning.js +64 -0
- package/dist/src/map.d.ts +16 -1
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +194 -34
- package/dist/src/networkFeatureMapForTokens.d.ts +17 -0
- package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
- package/dist/src/networkFeatureMapForTokens.js +75 -0
- package/dist/src/networks.d.ts +1947 -61
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +2392 -106
- package/dist/src/ofc.d.ts +695 -3
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +1653 -28
- package/dist/src/tokenConfig.d.ts +687 -108
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +1085 -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 -1155
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,26 @@ 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;
|
|
110
|
+
readonly addressPrefix?: string;
|
|
111
|
+
}
|
|
112
|
+
export interface CosmosNetwork extends AccountNetwork {
|
|
113
|
+
readonly addressPrefix: string;
|
|
114
|
+
readonly validatorPrefix: string;
|
|
115
|
+
readonly denom: string;
|
|
116
|
+
readonly gasAmount: string;
|
|
117
|
+
readonly gasLimit: number;
|
|
118
|
+
readonly validDenoms: string[];
|
|
47
119
|
}
|
|
48
120
|
/**
|
|
49
121
|
* Specification name type of the chain. Used in setting up the registry
|
|
50
122
|
*/
|
|
51
|
-
export
|
|
123
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'westmint';
|
|
124
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet' | 'polymesh_mainnet';
|
|
52
125
|
export interface DotNetwork extends AccountNetwork {
|
|
53
126
|
readonly specName: PolkadotSpecNameType;
|
|
54
127
|
readonly genesisHash: string;
|
|
@@ -61,8 +134,19 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
134
|
readonly batcherContractAddress?: string;
|
|
62
135
|
readonly forwarderFactoryAddress?: string;
|
|
63
136
|
readonly forwarderImplementationAddress?: string;
|
|
137
|
+
readonly walletV2ForwarderFactoryAddress?: string;
|
|
138
|
+
readonly walletV2ForwarderImplementationAddress?: string;
|
|
139
|
+
readonly walletV4ForwarderFactoryAddress?: string;
|
|
140
|
+
readonly walletV4ForwarderImplementationAddress?: string;
|
|
141
|
+
readonly walletFactoryAddress?: string;
|
|
142
|
+
readonly walletImplementationAddress?: string;
|
|
143
|
+
readonly walletV2FactoryAddress?: string;
|
|
144
|
+
readonly walletV2ImplementationAddress?: string;
|
|
145
|
+
readonly walletV4FactoryAddress?: string;
|
|
146
|
+
readonly walletV4ImplementationAddress?: string;
|
|
64
147
|
readonly nativeCoinOperationHashPrefix?: string;
|
|
65
148
|
readonly tokenOperationHashPrefix?: string;
|
|
149
|
+
readonly zamaAclContractAddress?: string;
|
|
66
150
|
}
|
|
67
151
|
export interface TronNetwork extends AccountNetwork {
|
|
68
152
|
maxFeeLimit: string;
|
|
@@ -71,6 +155,7 @@ export interface TronNetwork extends AccountNetwork {
|
|
|
71
155
|
export interface StacksNetwork extends AccountNetwork {
|
|
72
156
|
readonly sendmanymemoContractAddress: string;
|
|
73
157
|
readonly stakingContractAddress: string;
|
|
158
|
+
readonly sbtcWithdrawalContractAddress: string;
|
|
74
159
|
}
|
|
75
160
|
export interface OfcNetwork extends BaseNetwork {
|
|
76
161
|
}
|
|
@@ -97,6 +182,7 @@ declare class Ada extends Mainnet implements AdaNetwork {
|
|
|
97
182
|
poolDeposit: number;
|
|
98
183
|
stakeKeyDeposit: number;
|
|
99
184
|
explorerUrl: string;
|
|
185
|
+
accountExplorerUrl: string;
|
|
100
186
|
coinsPerUtxoWord: number;
|
|
101
187
|
maxTransactionSize: number;
|
|
102
188
|
maxValueSize: number;
|
|
@@ -106,12 +192,51 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
106
192
|
family: CoinFamily;
|
|
107
193
|
utxolibName: string;
|
|
108
194
|
explorerUrl: string;
|
|
195
|
+
accountExplorerUrl: string;
|
|
109
196
|
coinsPerUtxoWord: number;
|
|
110
197
|
maxTransactionSize: number;
|
|
111
198
|
maxValueSize: number;
|
|
112
199
|
poolDeposit: number;
|
|
113
200
|
stakeKeyDeposit: number;
|
|
114
201
|
}
|
|
202
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
203
|
+
name: string;
|
|
204
|
+
family: CoinFamily;
|
|
205
|
+
explorerUrl: string;
|
|
206
|
+
accountExplorerUrl: string;
|
|
207
|
+
blockExplorerUrl: string;
|
|
208
|
+
}
|
|
209
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
210
|
+
name: string;
|
|
211
|
+
family: CoinFamily;
|
|
212
|
+
explorerUrl: string;
|
|
213
|
+
accountExplorerUrl: string;
|
|
214
|
+
blockExplorerUrl: string;
|
|
215
|
+
}
|
|
216
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
217
|
+
name: string;
|
|
218
|
+
family: CoinFamily;
|
|
219
|
+
explorerUrl: string;
|
|
220
|
+
accountExplorerUrl: string;
|
|
221
|
+
}
|
|
222
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
223
|
+
name: string;
|
|
224
|
+
family: CoinFamily;
|
|
225
|
+
explorerUrl: string;
|
|
226
|
+
accountExplorerUrl: string;
|
|
227
|
+
}
|
|
228
|
+
export declare class KaspaMainnet extends Mainnet implements AccountNetwork {
|
|
229
|
+
name: string;
|
|
230
|
+
family: CoinFamily;
|
|
231
|
+
explorerUrl: string;
|
|
232
|
+
accountExplorerUrl: string;
|
|
233
|
+
}
|
|
234
|
+
export declare class KaspaTestnet extends Testnet implements AccountNetwork {
|
|
235
|
+
name: string;
|
|
236
|
+
family: CoinFamily;
|
|
237
|
+
explorerUrl: string;
|
|
238
|
+
accountExplorerUrl: string;
|
|
239
|
+
}
|
|
115
240
|
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
116
241
|
name: string;
|
|
117
242
|
family: CoinFamily;
|
|
@@ -120,6 +245,11 @@ declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
|
120
245
|
chainId: number;
|
|
121
246
|
nativeCoinOperationHashPrefix: string;
|
|
122
247
|
tokenOperationHashPrefix: string;
|
|
248
|
+
forwarderFactoryAddress: string;
|
|
249
|
+
forwarderImplementationAddress: string;
|
|
250
|
+
walletFactoryAddress: string;
|
|
251
|
+
walletImplementationAddress: string;
|
|
252
|
+
batcherContractAddress: string;
|
|
123
253
|
}
|
|
124
254
|
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
125
255
|
name: string;
|
|
@@ -129,6 +259,11 @@ declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
|
129
259
|
chainId: number;
|
|
130
260
|
nativeCoinOperationHashPrefix: string;
|
|
131
261
|
tokenOperationHashPrefix: string;
|
|
262
|
+
forwarderFactoryAddress: string;
|
|
263
|
+
forwarderImplementationAddress: string;
|
|
264
|
+
walletFactoryAddress: string;
|
|
265
|
+
walletImplementationAddress: string;
|
|
266
|
+
batcherContractAddress: string;
|
|
132
267
|
}
|
|
133
268
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
134
269
|
name: string;
|
|
@@ -136,6 +271,7 @@ declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
|
136
271
|
explorerUrl: string;
|
|
137
272
|
accountExplorerUrl: string;
|
|
138
273
|
chainId: number;
|
|
274
|
+
batcherContractAddress: string;
|
|
139
275
|
}
|
|
140
276
|
declare class AvalancheCTestnet extends Testnet implements AccountNetwork {
|
|
141
277
|
name: string;
|
|
@@ -143,6 +279,7 @@ declare class AvalancheCTestnet extends Testnet implements AccountNetwork {
|
|
|
143
279
|
explorerUrl: string;
|
|
144
280
|
accountExplorerUrl: string;
|
|
145
281
|
chainId: number;
|
|
282
|
+
batcherContractAddress: string;
|
|
146
283
|
}
|
|
147
284
|
declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
148
285
|
name: string;
|
|
@@ -157,6 +294,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
157
294
|
alias: string;
|
|
158
295
|
vm: string;
|
|
159
296
|
txFee: string;
|
|
297
|
+
maxImportFee: string;
|
|
160
298
|
createSubnetTx: string;
|
|
161
299
|
createChainTx: string;
|
|
162
300
|
creationTxFee: string;
|
|
@@ -182,6 +320,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
182
320
|
hrp: string;
|
|
183
321
|
vm: string;
|
|
184
322
|
txFee: string;
|
|
323
|
+
maxImportFee: string;
|
|
185
324
|
createSubnetTx: string;
|
|
186
325
|
createChainTx: string;
|
|
187
326
|
creationTxFee: string;
|
|
@@ -200,6 +339,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
200
339
|
explorerUrl: string;
|
|
201
340
|
accountExplorerUrl: string;
|
|
202
341
|
chainId: number;
|
|
342
|
+
nativeCoinOperationHashPrefix: string;
|
|
343
|
+
tokenOperationHashPrefix: string;
|
|
344
|
+
batcherContractAddress: string;
|
|
203
345
|
}
|
|
204
346
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
205
347
|
name: string;
|
|
@@ -207,6 +349,63 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
207
349
|
explorerUrl: string;
|
|
208
350
|
accountExplorerUrl: string;
|
|
209
351
|
chainId: number;
|
|
352
|
+
nativeCoinOperationHashPrefix: string;
|
|
353
|
+
tokenOperationHashPrefix: string;
|
|
354
|
+
batcherContractAddress: string;
|
|
355
|
+
}
|
|
356
|
+
declare class OpBNB extends Mainnet implements EthereumNetwork {
|
|
357
|
+
name: string;
|
|
358
|
+
family: CoinFamily;
|
|
359
|
+
explorerUrl: string;
|
|
360
|
+
accountExplorerUrl: string;
|
|
361
|
+
chainId: number;
|
|
362
|
+
nativeCoinOperationHashPrefix: string;
|
|
363
|
+
tokenOperationHashPrefix: string;
|
|
364
|
+
}
|
|
365
|
+
declare class OpBNBTestnet extends Testnet implements EthereumNetwork {
|
|
366
|
+
name: string;
|
|
367
|
+
family: CoinFamily;
|
|
368
|
+
explorerUrl: string;
|
|
369
|
+
accountExplorerUrl: string;
|
|
370
|
+
chainId: number;
|
|
371
|
+
nativeCoinOperationHashPrefix: string;
|
|
372
|
+
tokenOperationHashPrefix: string;
|
|
373
|
+
}
|
|
374
|
+
declare class Fantom extends Mainnet implements EthereumNetwork {
|
|
375
|
+
name: string;
|
|
376
|
+
family: CoinFamily;
|
|
377
|
+
explorerUrl: string;
|
|
378
|
+
accountExplorerUrl: string;
|
|
379
|
+
chainId: number;
|
|
380
|
+
nativeCoinOperationHashPrefix: string;
|
|
381
|
+
tokenOperationHashPrefix: string;
|
|
382
|
+
}
|
|
383
|
+
declare class FantomTestnet extends Testnet implements EthereumNetwork {
|
|
384
|
+
name: string;
|
|
385
|
+
family: CoinFamily;
|
|
386
|
+
explorerUrl: string;
|
|
387
|
+
accountExplorerUrl: string;
|
|
388
|
+
chainId: number;
|
|
389
|
+
nativeCoinOperationHashPrefix: string;
|
|
390
|
+
tokenOperationHashPrefix: string;
|
|
391
|
+
}
|
|
392
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
393
|
+
name: string;
|
|
394
|
+
family: CoinFamily;
|
|
395
|
+
utxolibName: string;
|
|
396
|
+
explorerUrl: string;
|
|
397
|
+
lightningServicePubKey: string;
|
|
398
|
+
middlewarePubKey: string;
|
|
399
|
+
tatPubKey: string;
|
|
400
|
+
}
|
|
401
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
402
|
+
name: string;
|
|
403
|
+
family: CoinFamily;
|
|
404
|
+
utxolibName: string;
|
|
405
|
+
explorerUrl: string;
|
|
406
|
+
lightningServicePubKey: string;
|
|
407
|
+
middlewarePubKey: string;
|
|
408
|
+
tatPubKey: string;
|
|
210
409
|
}
|
|
211
410
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
212
411
|
name: string;
|
|
@@ -219,6 +418,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
219
418
|
family: CoinFamily;
|
|
220
419
|
utxolibName: string;
|
|
221
420
|
explorerUrl: string;
|
|
421
|
+
paygoAddressAttestationPubkey: string;
|
|
422
|
+
}
|
|
423
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
424
|
+
name: string;
|
|
425
|
+
family: CoinFamily;
|
|
426
|
+
utxolibName: string;
|
|
427
|
+
explorerUrl: string;
|
|
428
|
+
}
|
|
429
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
430
|
+
name: string;
|
|
431
|
+
family: CoinFamily;
|
|
432
|
+
utxolibName: string;
|
|
433
|
+
explorerUrl: string;
|
|
434
|
+
}
|
|
435
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
436
|
+
name: string;
|
|
437
|
+
family: CoinFamily;
|
|
438
|
+
utxolibName: string;
|
|
439
|
+
explorerUrl: string;
|
|
222
440
|
}
|
|
223
441
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
224
442
|
name: string;
|
|
@@ -292,7 +510,7 @@ declare class ECashTestnet extends Testnet implements UtxoNetwork {
|
|
|
292
510
|
utxolibName: string;
|
|
293
511
|
explorerUrl: undefined;
|
|
294
512
|
}
|
|
295
|
-
declare class
|
|
513
|
+
declare class PolkadotAssetHub extends Mainnet implements DotNetwork {
|
|
296
514
|
name: string;
|
|
297
515
|
family: CoinFamily;
|
|
298
516
|
explorerUrl: string;
|
|
@@ -302,7 +520,7 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
302
520
|
chainName: string;
|
|
303
521
|
txVersion: number;
|
|
304
522
|
}
|
|
305
|
-
declare class
|
|
523
|
+
declare class WestendAssetHub extends Testnet implements DotNetwork {
|
|
306
524
|
name: string;
|
|
307
525
|
family: CoinFamily;
|
|
308
526
|
explorerUrl: string;
|
|
@@ -318,6 +536,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
318
536
|
explorerUrl: string;
|
|
319
537
|
accountExplorerUrl: string;
|
|
320
538
|
chainId: number;
|
|
539
|
+
nativeCoinOperationHashPrefix: string;
|
|
540
|
+
tokenOperationHashPrefix: string;
|
|
321
541
|
}
|
|
322
542
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
323
543
|
name: string;
|
|
@@ -325,6 +545,42 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
325
545
|
explorerUrl: string;
|
|
326
546
|
accountExplorerUrl: string;
|
|
327
547
|
chainId: number;
|
|
548
|
+
nativeCoinOperationHashPrefix: string;
|
|
549
|
+
tokenOperationHashPrefix: string;
|
|
550
|
+
}
|
|
551
|
+
declare class Chiliz extends Mainnet implements EthereumNetwork {
|
|
552
|
+
name: string;
|
|
553
|
+
family: CoinFamily;
|
|
554
|
+
explorerUrl: string;
|
|
555
|
+
accountExplorerUrl: string;
|
|
556
|
+
chainId: number;
|
|
557
|
+
nativeCoinOperationHashPrefix: string;
|
|
558
|
+
tokenOperationHashPrefix: string;
|
|
559
|
+
}
|
|
560
|
+
declare class ChilizTestnet extends Testnet implements EthereumNetwork {
|
|
561
|
+
name: string;
|
|
562
|
+
family: CoinFamily;
|
|
563
|
+
explorerUrl: string;
|
|
564
|
+
accountExplorerUrl: string;
|
|
565
|
+
chainId: number;
|
|
566
|
+
nativeCoinOperationHashPrefix: string;
|
|
567
|
+
tokenOperationHashPrefix: string;
|
|
568
|
+
}
|
|
569
|
+
declare class CodexEth extends Mainnet implements EthereumNetwork {
|
|
570
|
+
name: string;
|
|
571
|
+
family: CoinFamily;
|
|
572
|
+
explorerUrl: string;
|
|
573
|
+
accountExplorerUrl: string;
|
|
574
|
+
chainId: number;
|
|
575
|
+
nativeCoinOperationHashPrefix: string;
|
|
576
|
+
}
|
|
577
|
+
declare class CodexEthTestnet extends Testnet implements EthereumNetwork {
|
|
578
|
+
name: string;
|
|
579
|
+
family: CoinFamily;
|
|
580
|
+
explorerUrl: string;
|
|
581
|
+
accountExplorerUrl: string;
|
|
582
|
+
chainId: number;
|
|
583
|
+
nativeCoinOperationHashPrefix: string;
|
|
328
584
|
}
|
|
329
585
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
330
586
|
name: string;
|
|
@@ -348,8 +604,18 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
348
604
|
batcherContractAddress: string;
|
|
349
605
|
forwarderFactoryAddress: string;
|
|
350
606
|
forwarderImplementationAddress: string;
|
|
607
|
+
walletV2ForwarderFactoryAddress: string;
|
|
608
|
+
walletV2ForwarderImplementationAddress: string;
|
|
609
|
+
walletV4ForwarderFactoryAddress: string;
|
|
610
|
+
walletV4ForwarderImplementationAddress: string;
|
|
351
611
|
nativeCoinOperationHashPrefix: string;
|
|
352
612
|
tokenOperationHashPrefix: string;
|
|
613
|
+
walletFactoryAddress: string;
|
|
614
|
+
walletImplementationAddress: string;
|
|
615
|
+
walletV2FactoryAddress: string;
|
|
616
|
+
walletV2ImplementationAddress: string;
|
|
617
|
+
walletV4FactoryAddress: string;
|
|
618
|
+
walletV4ImplementationAddress: string;
|
|
353
619
|
}
|
|
354
620
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
355
621
|
name: string;
|
|
@@ -369,6 +635,22 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
369
635
|
nativeCoinOperationHashPrefix: string;
|
|
370
636
|
tokenOperationHashPrefix: string;
|
|
371
637
|
}
|
|
638
|
+
declare class XtzEvm extends Mainnet implements EthereumNetwork {
|
|
639
|
+
name: string;
|
|
640
|
+
family: CoinFamily;
|
|
641
|
+
explorerUrl: string;
|
|
642
|
+
accountExplorerUrl: string;
|
|
643
|
+
chainId: number;
|
|
644
|
+
nativeCoinOperationHashPrefix: string;
|
|
645
|
+
}
|
|
646
|
+
declare class XtzEvmTestnet extends Testnet implements EthereumNetwork {
|
|
647
|
+
name: string;
|
|
648
|
+
family: CoinFamily;
|
|
649
|
+
explorerUrl: string;
|
|
650
|
+
accountExplorerUrl: string;
|
|
651
|
+
chainId: number;
|
|
652
|
+
nativeCoinOperationHashPrefix: string;
|
|
653
|
+
}
|
|
372
654
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
373
655
|
name: string;
|
|
374
656
|
family: CoinFamily;
|
|
@@ -412,6 +694,32 @@ declare class Holesky extends Testnet implements EthereumNetwork {
|
|
|
412
694
|
forwarderImplementationAddress: string;
|
|
413
695
|
nativeCoinOperationHashPrefix: string;
|
|
414
696
|
tokenOperationHashPrefix: string;
|
|
697
|
+
walletV4ForwarderFactoryAddress: string;
|
|
698
|
+
walletV4ForwarderImplementationAddress: string;
|
|
699
|
+
}
|
|
700
|
+
declare class Hoodi extends Testnet implements EthereumNetwork {
|
|
701
|
+
name: string;
|
|
702
|
+
family: CoinFamily;
|
|
703
|
+
explorerUrl: string;
|
|
704
|
+
accountExplorerUrl: string;
|
|
705
|
+
blockExplorerUrl: string;
|
|
706
|
+
chainId: number;
|
|
707
|
+
batcherContractAddress: string;
|
|
708
|
+
forwarderFactoryAddress: string;
|
|
709
|
+
forwarderImplementationAddress: string;
|
|
710
|
+
walletV2ForwarderFactoryAddress: string;
|
|
711
|
+
walletV2ForwarderImplementationAddress: string;
|
|
712
|
+
walletV4ForwarderFactoryAddress: string;
|
|
713
|
+
walletV4ForwarderImplementationAddress: string;
|
|
714
|
+
walletFactoryAddress: string;
|
|
715
|
+
walletImplementationAddress: string;
|
|
716
|
+
walletV2FactoryAddress: string;
|
|
717
|
+
walletV2ImplementationAddress: string;
|
|
718
|
+
walletV4FactoryAddress: string;
|
|
719
|
+
walletV4ImplementationAddress: string;
|
|
720
|
+
nativeCoinOperationHashPrefix: string;
|
|
721
|
+
tokenOperationHashPrefix: string;
|
|
722
|
+
zamaAclContractAddress: string;
|
|
415
723
|
}
|
|
416
724
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
417
725
|
name: string;
|
|
@@ -419,6 +727,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
419
727
|
explorerUrl: string;
|
|
420
728
|
accountExplorerUrl: string;
|
|
421
729
|
chainId: number;
|
|
730
|
+
nativeCoinOperationHashPrefix: string;
|
|
731
|
+
tokenOperationHashPrefix: string;
|
|
422
732
|
}
|
|
423
733
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
424
734
|
name: string;
|
|
@@ -426,6 +736,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
426
736
|
explorerUrl: string;
|
|
427
737
|
accountExplorerUrl: string;
|
|
428
738
|
chainId: number;
|
|
739
|
+
nativeCoinOperationHashPrefix: string;
|
|
740
|
+
tokenOperationHashPrefix: string;
|
|
429
741
|
}
|
|
430
742
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
431
743
|
name: string;
|
|
@@ -475,6 +787,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
475
787
|
explorerUrl: string;
|
|
476
788
|
accountExplorerUrl: string;
|
|
477
789
|
chainId: number;
|
|
790
|
+
nativeCoinOperationHashPrefix: string;
|
|
791
|
+
tokenOperationHashPrefix: string;
|
|
478
792
|
}
|
|
479
793
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
480
794
|
name: string;
|
|
@@ -482,6 +796,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
482
796
|
explorerUrl: string;
|
|
483
797
|
accountExplorerUrl: string;
|
|
484
798
|
chainId: number;
|
|
799
|
+
nativeCoinOperationHashPrefix: string;
|
|
800
|
+
tokenOperationHashPrefix: string;
|
|
485
801
|
}
|
|
486
802
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
487
803
|
name: string;
|
|
@@ -503,269 +819,1588 @@ declare class SolTestnet extends Testnet implements AccountNetwork {
|
|
|
503
819
|
family: CoinFamily;
|
|
504
820
|
explorerUrl: string;
|
|
505
821
|
}
|
|
822
|
+
declare class StarknetMainnet extends Mainnet implements AccountNetwork {
|
|
823
|
+
name: string;
|
|
824
|
+
family: CoinFamily;
|
|
825
|
+
explorerUrl: string;
|
|
826
|
+
accountExplorerUrl: string;
|
|
827
|
+
}
|
|
828
|
+
declare class StarknetTestnet extends Testnet implements AccountNetwork {
|
|
829
|
+
name: string;
|
|
830
|
+
family: CoinFamily;
|
|
831
|
+
explorerUrl: string;
|
|
832
|
+
accountExplorerUrl: string;
|
|
833
|
+
}
|
|
506
834
|
declare class Sui extends Mainnet implements AccountNetwork {
|
|
507
835
|
name: string;
|
|
508
836
|
family: CoinFamily;
|
|
509
837
|
explorerUrl: string;
|
|
838
|
+
accountExplorerUrl: string;
|
|
510
839
|
}
|
|
511
840
|
declare class SuiTestnet extends Testnet implements AccountNetwork {
|
|
512
841
|
name: string;
|
|
513
842
|
family: CoinFamily;
|
|
514
843
|
explorerUrl: string;
|
|
844
|
+
accountExplorerUrl: string;
|
|
515
845
|
}
|
|
516
846
|
declare class Atom extends Mainnet implements AccountNetwork {
|
|
517
847
|
name: string;
|
|
518
848
|
family: CoinFamily;
|
|
519
849
|
explorerUrl: string;
|
|
850
|
+
addressPrefix: string;
|
|
520
851
|
}
|
|
521
852
|
declare class AtomTestnet extends Testnet implements AccountNetwork {
|
|
522
853
|
name: string;
|
|
523
854
|
family: CoinFamily;
|
|
524
855
|
explorerUrl: string;
|
|
856
|
+
addressPrefix: string;
|
|
525
857
|
}
|
|
526
858
|
declare class Osmo extends Mainnet implements AccountNetwork {
|
|
527
859
|
name: string;
|
|
528
860
|
family: CoinFamily;
|
|
529
861
|
explorerUrl: string;
|
|
862
|
+
addressPrefix: string;
|
|
530
863
|
}
|
|
531
864
|
declare class OsmoTestnet extends Testnet implements AccountNetwork {
|
|
532
865
|
name: string;
|
|
533
866
|
family: CoinFamily;
|
|
534
867
|
explorerUrl: string;
|
|
868
|
+
addressPrefix: string;
|
|
535
869
|
}
|
|
536
870
|
declare class Tia extends Mainnet implements AccountNetwork {
|
|
537
871
|
name: string;
|
|
538
872
|
family: CoinFamily;
|
|
539
873
|
explorerUrl: string;
|
|
874
|
+
addressPrefix: string;
|
|
540
875
|
}
|
|
541
876
|
declare class TiaTestnet extends Testnet implements AccountNetwork {
|
|
542
877
|
name: string;
|
|
543
878
|
family: CoinFamily;
|
|
544
879
|
explorerUrl: string;
|
|
880
|
+
addressPrefix: string;
|
|
545
881
|
}
|
|
546
882
|
declare class Hash extends Mainnet implements AccountNetwork {
|
|
547
883
|
name: string;
|
|
548
884
|
family: CoinFamily;
|
|
549
885
|
explorerUrl: string;
|
|
886
|
+
addressPrefix: string;
|
|
550
887
|
}
|
|
551
888
|
declare class HashTestnet extends Testnet implements AccountNetwork {
|
|
552
889
|
name: string;
|
|
553
890
|
family: CoinFamily;
|
|
554
891
|
explorerUrl: string;
|
|
892
|
+
addressPrefix: string;
|
|
555
893
|
}
|
|
556
894
|
declare class Bld extends Mainnet implements AccountNetwork {
|
|
557
895
|
name: string;
|
|
558
896
|
family: CoinFamily;
|
|
559
897
|
explorerUrl: string;
|
|
898
|
+
addressPrefix: string;
|
|
560
899
|
}
|
|
561
900
|
declare class BldTestnet extends Testnet implements AccountNetwork {
|
|
562
901
|
name: string;
|
|
563
902
|
family: CoinFamily;
|
|
564
903
|
explorerUrl: string;
|
|
904
|
+
addressPrefix: string;
|
|
565
905
|
}
|
|
566
906
|
declare class Sei extends Mainnet implements AccountNetwork {
|
|
567
907
|
name: string;
|
|
568
908
|
family: CoinFamily;
|
|
569
909
|
explorerUrl: string;
|
|
910
|
+
addressPrefix: string;
|
|
570
911
|
}
|
|
571
912
|
declare class SeiTestnet extends Testnet implements AccountNetwork {
|
|
572
913
|
name: string;
|
|
573
914
|
family: CoinFamily;
|
|
574
915
|
explorerUrl: string;
|
|
916
|
+
addressPrefix: string;
|
|
575
917
|
}
|
|
576
918
|
declare class Zeta extends Mainnet implements AccountNetwork {
|
|
577
919
|
name: string;
|
|
578
920
|
family: CoinFamily;
|
|
579
921
|
explorerUrl: string;
|
|
922
|
+
addressPrefix: string;
|
|
580
923
|
}
|
|
581
924
|
declare class ZetaTestnet extends Testnet implements AccountNetwork {
|
|
582
925
|
name: string;
|
|
583
926
|
family: CoinFamily;
|
|
584
927
|
explorerUrl: string;
|
|
928
|
+
addressPrefix: string;
|
|
585
929
|
}
|
|
586
930
|
declare class Injective extends Mainnet implements AccountNetwork {
|
|
587
931
|
name: string;
|
|
588
932
|
family: CoinFamily;
|
|
589
933
|
explorerUrl: string;
|
|
934
|
+
addressPrefix: string;
|
|
590
935
|
}
|
|
591
936
|
declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
592
937
|
name: string;
|
|
593
938
|
family: CoinFamily;
|
|
594
939
|
explorerUrl: string;
|
|
940
|
+
addressPrefix: string;
|
|
595
941
|
}
|
|
596
|
-
declare class
|
|
942
|
+
declare class KavaCosmos extends Mainnet implements CosmosNetwork {
|
|
597
943
|
name: string;
|
|
598
944
|
family: CoinFamily;
|
|
599
945
|
explorerUrl: string;
|
|
946
|
+
addressPrefix: string;
|
|
947
|
+
validatorPrefix: string;
|
|
948
|
+
denom: string;
|
|
949
|
+
gasAmount: string;
|
|
950
|
+
gasLimit: number;
|
|
951
|
+
validDenoms: string[];
|
|
600
952
|
}
|
|
601
|
-
declare class
|
|
953
|
+
declare class KavaCosmosTestnet extends Testnet implements CosmosNetwork {
|
|
602
954
|
name: string;
|
|
603
955
|
family: CoinFamily;
|
|
604
956
|
explorerUrl: string;
|
|
957
|
+
addressPrefix: string;
|
|
958
|
+
validatorPrefix: string;
|
|
959
|
+
denom: string;
|
|
960
|
+
gasAmount: string;
|
|
961
|
+
gasLimit: number;
|
|
962
|
+
validDenoms: string[];
|
|
605
963
|
}
|
|
606
|
-
declare class
|
|
964
|
+
declare class Dydx extends Mainnet implements CosmosNetwork {
|
|
607
965
|
name: string;
|
|
608
966
|
family: CoinFamily;
|
|
609
967
|
explorerUrl: string;
|
|
968
|
+
addressPrefix: string;
|
|
969
|
+
validatorPrefix: string;
|
|
970
|
+
denom: string;
|
|
971
|
+
gasAmount: string;
|
|
972
|
+
gasLimit: number;
|
|
973
|
+
validDenoms: string[];
|
|
610
974
|
}
|
|
611
|
-
declare class
|
|
975
|
+
declare class DydxTestnet extends Testnet implements CosmosNetwork {
|
|
612
976
|
name: string;
|
|
613
977
|
family: CoinFamily;
|
|
614
978
|
explorerUrl: string;
|
|
979
|
+
addressPrefix: string;
|
|
980
|
+
validatorPrefix: string;
|
|
981
|
+
denom: string;
|
|
982
|
+
gasAmount: string;
|
|
983
|
+
gasLimit: number;
|
|
984
|
+
validDenoms: string[];
|
|
615
985
|
}
|
|
616
|
-
declare class
|
|
986
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
617
987
|
name: string;
|
|
618
988
|
family: CoinFamily;
|
|
619
989
|
explorerUrl: string;
|
|
620
990
|
}
|
|
621
|
-
declare class
|
|
991
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
622
992
|
name: string;
|
|
623
993
|
family: CoinFamily;
|
|
624
994
|
explorerUrl: string;
|
|
625
995
|
}
|
|
626
|
-
declare class
|
|
996
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
627
997
|
name: string;
|
|
628
998
|
family: CoinFamily;
|
|
629
|
-
explorerUrl:
|
|
999
|
+
explorerUrl: string;
|
|
1000
|
+
addressPrefix: string;
|
|
630
1001
|
}
|
|
631
|
-
declare class
|
|
1002
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
632
1003
|
name: string;
|
|
633
1004
|
family: CoinFamily;
|
|
634
|
-
explorerUrl:
|
|
1005
|
+
explorerUrl: string;
|
|
1006
|
+
addressPrefix: string;
|
|
635
1007
|
}
|
|
636
|
-
declare class
|
|
1008
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
637
1009
|
name: string;
|
|
638
1010
|
family: CoinFamily;
|
|
639
1011
|
explorerUrl: string;
|
|
1012
|
+
addressPrefix: string;
|
|
640
1013
|
}
|
|
641
|
-
declare class
|
|
1014
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
642
1015
|
name: string;
|
|
643
1016
|
family: CoinFamily;
|
|
644
1017
|
explorerUrl: string;
|
|
1018
|
+
addressPrefix: string;
|
|
645
1019
|
}
|
|
646
|
-
declare class
|
|
1020
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
647
1021
|
name: string;
|
|
648
1022
|
family: CoinFamily;
|
|
649
1023
|
explorerUrl: string;
|
|
650
|
-
|
|
651
|
-
stakingContractAddress: string;
|
|
1024
|
+
addressPrefix: string;
|
|
652
1025
|
}
|
|
653
|
-
declare class
|
|
1026
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
654
1027
|
name: string;
|
|
655
1028
|
family: CoinFamily;
|
|
656
1029
|
explorerUrl: string;
|
|
657
|
-
|
|
658
|
-
stakingContractAddress: string;
|
|
1030
|
+
addressPrefix: string;
|
|
659
1031
|
}
|
|
660
|
-
declare class
|
|
1032
|
+
declare class Mantra extends Mainnet implements CosmosNetwork {
|
|
661
1033
|
name: string;
|
|
662
1034
|
family: CoinFamily;
|
|
663
|
-
explorerUrl:
|
|
1035
|
+
explorerUrl: string;
|
|
1036
|
+
addressPrefix: string;
|
|
1037
|
+
validatorPrefix: string;
|
|
1038
|
+
denom: string;
|
|
1039
|
+
gasAmount: string;
|
|
1040
|
+
gasLimit: number;
|
|
1041
|
+
validDenoms: string[];
|
|
664
1042
|
}
|
|
665
|
-
declare class
|
|
1043
|
+
declare class MantraTestnet extends Testnet implements CosmosNetwork {
|
|
666
1044
|
name: string;
|
|
667
1045
|
family: CoinFamily;
|
|
668
|
-
explorerUrl:
|
|
1046
|
+
explorerUrl: string;
|
|
1047
|
+
addressPrefix: string;
|
|
1048
|
+
validatorPrefix: string;
|
|
1049
|
+
denom: string;
|
|
1050
|
+
gasAmount: string;
|
|
1051
|
+
gasLimit: number;
|
|
1052
|
+
validDenoms: string[];
|
|
669
1053
|
}
|
|
670
|
-
declare class
|
|
1054
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
671
1055
|
name: string;
|
|
672
1056
|
family: CoinFamily;
|
|
673
|
-
explorerUrl:
|
|
1057
|
+
explorerUrl: string;
|
|
1058
|
+
addressPrefix: string;
|
|
674
1059
|
}
|
|
675
|
-
declare class
|
|
1060
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
676
1061
|
name: string;
|
|
677
1062
|
family: CoinFamily;
|
|
678
|
-
explorerUrl:
|
|
1063
|
+
explorerUrl: string;
|
|
1064
|
+
addressPrefix: string;
|
|
679
1065
|
}
|
|
680
|
-
declare class
|
|
1066
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
681
1067
|
name: string;
|
|
682
1068
|
family: CoinFamily;
|
|
683
1069
|
explorerUrl: string;
|
|
684
|
-
maxFeeLimit: string;
|
|
685
|
-
contractCallFeeLimit: string;
|
|
686
1070
|
}
|
|
687
|
-
declare class
|
|
1071
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
688
1072
|
name: string;
|
|
689
1073
|
family: CoinFamily;
|
|
690
1074
|
explorerUrl: string;
|
|
691
|
-
maxFeeLimit: string;
|
|
692
|
-
contractCallFeeLimit: string;
|
|
693
1075
|
}
|
|
694
|
-
declare class
|
|
1076
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
695
1077
|
name: string;
|
|
696
1078
|
family: CoinFamily;
|
|
697
1079
|
explorerUrl: string;
|
|
1080
|
+
addressPrefix: string;
|
|
698
1081
|
}
|
|
699
|
-
declare class
|
|
1082
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
700
1083
|
name: string;
|
|
701
1084
|
family: CoinFamily;
|
|
702
1085
|
explorerUrl: string;
|
|
1086
|
+
addressPrefix: string;
|
|
703
1087
|
}
|
|
704
|
-
declare class
|
|
1088
|
+
declare class Asi extends Mainnet implements AccountNetwork {
|
|
705
1089
|
name: string;
|
|
706
1090
|
family: CoinFamily;
|
|
707
1091
|
explorerUrl: string;
|
|
1092
|
+
addressPrefix: string;
|
|
708
1093
|
}
|
|
709
|
-
declare class
|
|
1094
|
+
declare class AsiTestnet extends Testnet implements AccountNetwork {
|
|
710
1095
|
name: string;
|
|
711
1096
|
family: CoinFamily;
|
|
712
1097
|
explorerUrl: string;
|
|
1098
|
+
addressPrefix: string;
|
|
713
1099
|
}
|
|
714
|
-
declare class
|
|
1100
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
715
1101
|
name: string;
|
|
716
1102
|
family: CoinFamily;
|
|
717
|
-
utxolibName: string;
|
|
718
1103
|
explorerUrl: string;
|
|
1104
|
+
addressPrefix: string;
|
|
719
1105
|
}
|
|
720
|
-
declare class
|
|
1106
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
721
1107
|
name: string;
|
|
722
1108
|
family: CoinFamily;
|
|
723
|
-
utxolibName: string;
|
|
724
1109
|
explorerUrl: string;
|
|
1110
|
+
addressPrefix: string;
|
|
725
1111
|
}
|
|
726
|
-
declare class
|
|
1112
|
+
declare class Stx extends Mainnet implements StacksNetwork {
|
|
727
1113
|
name: string;
|
|
728
1114
|
family: CoinFamily;
|
|
729
1115
|
explorerUrl: string;
|
|
1116
|
+
sendmanymemoContractAddress: string;
|
|
1117
|
+
stakingContractAddress: string;
|
|
1118
|
+
sbtcWithdrawalContractAddress: string;
|
|
1119
|
+
}
|
|
1120
|
+
declare class StxTestnet extends Testnet implements StacksNetwork {
|
|
1121
|
+
name: string;
|
|
1122
|
+
family: CoinFamily;
|
|
1123
|
+
explorerUrl: string;
|
|
1124
|
+
sendmanymemoContractAddress: string;
|
|
1125
|
+
stakingContractAddress: string;
|
|
1126
|
+
sbtcWithdrawalContractAddress: string;
|
|
1127
|
+
}
|
|
1128
|
+
declare class SUSD extends Mainnet implements AccountNetwork {
|
|
1129
|
+
name: string;
|
|
1130
|
+
family: CoinFamily;
|
|
1131
|
+
explorerUrl: undefined;
|
|
1132
|
+
}
|
|
1133
|
+
declare class SUSDTestnet extends Testnet implements AccountNetwork {
|
|
1134
|
+
name: string;
|
|
1135
|
+
family: CoinFamily;
|
|
1136
|
+
explorerUrl: undefined;
|
|
1137
|
+
}
|
|
1138
|
+
declare class FiatTestnet extends Testnet implements BaseNetwork {
|
|
1139
|
+
name: string;
|
|
1140
|
+
family: CoinFamily;
|
|
1141
|
+
explorerUrl: undefined;
|
|
1142
|
+
}
|
|
1143
|
+
declare class Fiat extends Mainnet implements BaseNetwork {
|
|
1144
|
+
name: string;
|
|
1145
|
+
family: CoinFamily;
|
|
1146
|
+
explorerUrl: undefined;
|
|
1147
|
+
}
|
|
1148
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
1149
|
+
name: string;
|
|
1150
|
+
family: CoinFamily;
|
|
1151
|
+
explorerUrl: string;
|
|
1152
|
+
}
|
|
1153
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
1154
|
+
name: string;
|
|
1155
|
+
family: CoinFamily;
|
|
1156
|
+
explorerUrl: string;
|
|
1157
|
+
specName: SubstrateSpecNameType;
|
|
1158
|
+
genesisHash: string;
|
|
1159
|
+
specVersion: number;
|
|
1160
|
+
chainName: string;
|
|
1161
|
+
txVersion: number;
|
|
1162
|
+
}
|
|
1163
|
+
declare class Trx extends Mainnet implements TronNetwork {
|
|
1164
|
+
name: string;
|
|
1165
|
+
family: CoinFamily;
|
|
1166
|
+
accountExplorerUrl: string;
|
|
1167
|
+
explorerUrl: string;
|
|
1168
|
+
maxFeeLimit: string;
|
|
1169
|
+
contractCallFeeLimit: string;
|
|
1170
|
+
}
|
|
1171
|
+
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
1172
|
+
name: string;
|
|
1173
|
+
family: CoinFamily;
|
|
1174
|
+
accountExplorerUrl: string;
|
|
1175
|
+
explorerUrl: string;
|
|
1176
|
+
maxFeeLimit: string;
|
|
1177
|
+
contractCallFeeLimit: string;
|
|
1178
|
+
}
|
|
1179
|
+
declare class Xrp extends Mainnet implements AccountNetwork {
|
|
1180
|
+
name: string;
|
|
1181
|
+
family: CoinFamily;
|
|
1182
|
+
explorerUrl: string;
|
|
1183
|
+
}
|
|
1184
|
+
declare class XrpTestnet extends Testnet implements AccountNetwork {
|
|
1185
|
+
name: string;
|
|
1186
|
+
family: CoinFamily;
|
|
1187
|
+
explorerUrl: string;
|
|
1188
|
+
}
|
|
1189
|
+
declare class Xtz extends Mainnet implements AccountNetwork {
|
|
1190
|
+
name: string;
|
|
1191
|
+
family: CoinFamily;
|
|
1192
|
+
explorerUrl: string;
|
|
1193
|
+
accountExplorerUrl: string;
|
|
1194
|
+
}
|
|
1195
|
+
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
1196
|
+
name: string;
|
|
1197
|
+
family: CoinFamily;
|
|
1198
|
+
explorerUrl: string;
|
|
1199
|
+
accountExplorerUrl: string;
|
|
1200
|
+
}
|
|
1201
|
+
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
1202
|
+
name: string;
|
|
1203
|
+
family: CoinFamily;
|
|
1204
|
+
utxolibName: string;
|
|
1205
|
+
explorerUrl: string;
|
|
1206
|
+
}
|
|
1207
|
+
declare class ZCashTestnet extends Testnet implements UtxoNetwork {
|
|
1208
|
+
name: string;
|
|
1209
|
+
family: CoinFamily;
|
|
1210
|
+
utxolibName: string;
|
|
1211
|
+
explorerUrl: string;
|
|
1212
|
+
}
|
|
1213
|
+
declare class Near extends Mainnet implements AccountNetwork {
|
|
1214
|
+
name: string;
|
|
1215
|
+
family: CoinFamily;
|
|
1216
|
+
explorerUrl: string;
|
|
1217
|
+
accountExplorerUrl: string;
|
|
1218
|
+
feeReserve: string;
|
|
1219
|
+
storageReserve: string;
|
|
1220
|
+
}
|
|
1221
|
+
declare class NearTestnet extends Testnet implements AccountNetwork {
|
|
1222
|
+
name: string;
|
|
1223
|
+
family: CoinFamily;
|
|
1224
|
+
explorerUrl: string;
|
|
1225
|
+
accountExplorerUrl: string;
|
|
730
1226
|
feeReserve: string;
|
|
731
1227
|
storageReserve: string;
|
|
732
1228
|
}
|
|
733
|
-
declare class
|
|
1229
|
+
declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
1230
|
+
name: string;
|
|
1231
|
+
family: CoinFamily;
|
|
1232
|
+
explorerUrl: string;
|
|
1233
|
+
accountExplorerUrl: string;
|
|
1234
|
+
chainId: number;
|
|
1235
|
+
forwarderFactoryAddress: string;
|
|
1236
|
+
forwarderImplementationAddress: string;
|
|
1237
|
+
walletFactoryAddress: string;
|
|
1238
|
+
walletImplementationAddress: string;
|
|
1239
|
+
batcherContractAddress: string;
|
|
1240
|
+
nativeCoinOperationHashPrefix: string;
|
|
1241
|
+
tokenOperationHashPrefix: string;
|
|
1242
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1243
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1244
|
+
}
|
|
1245
|
+
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
1246
|
+
name: string;
|
|
1247
|
+
family: CoinFamily;
|
|
1248
|
+
explorerUrl: string;
|
|
1249
|
+
accountExplorerUrl: string;
|
|
1250
|
+
chainId: number;
|
|
1251
|
+
forwarderFactoryAddress: string;
|
|
1252
|
+
forwarderImplementationAddress: string;
|
|
1253
|
+
walletFactoryAddress: string;
|
|
1254
|
+
walletImplementationAddress: string;
|
|
1255
|
+
batcherContractAddress: string;
|
|
1256
|
+
nativeCoinOperationHashPrefix: string;
|
|
1257
|
+
tokenOperationHashPrefix: string;
|
|
1258
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1259
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1260
|
+
}
|
|
1261
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
1262
|
+
name: string;
|
|
1263
|
+
family: CoinFamily;
|
|
1264
|
+
explorerUrl: string;
|
|
1265
|
+
accountExplorerUrl: string;
|
|
1266
|
+
chainId: number;
|
|
1267
|
+
nativeCoinOperationHashPrefix: string;
|
|
1268
|
+
tokenOperationHashPrefix: string;
|
|
1269
|
+
forwarderFactoryAddress: string;
|
|
1270
|
+
forwarderImplementationAddress: string;
|
|
1271
|
+
walletFactoryAddress: string;
|
|
1272
|
+
walletImplementationAddress: string;
|
|
1273
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1274
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1275
|
+
batcherContractAddress: string;
|
|
1276
|
+
}
|
|
1277
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
1278
|
+
name: string;
|
|
1279
|
+
family: CoinFamily;
|
|
1280
|
+
explorerUrl: string;
|
|
1281
|
+
accountExplorerUrl: string;
|
|
1282
|
+
chainId: number;
|
|
1283
|
+
nativeCoinOperationHashPrefix: string;
|
|
1284
|
+
tokenOperationHashPrefix: string;
|
|
1285
|
+
forwarderFactoryAddress: string;
|
|
1286
|
+
forwarderImplementationAddress: string;
|
|
1287
|
+
walletFactoryAddress: string;
|
|
1288
|
+
walletImplementationAddress: string;
|
|
1289
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1290
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1291
|
+
batcherContractAddress: string;
|
|
1292
|
+
}
|
|
1293
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
1294
|
+
name: string;
|
|
1295
|
+
family: CoinFamily;
|
|
1296
|
+
explorerUrl: string;
|
|
1297
|
+
accountExplorerUrl: string;
|
|
1298
|
+
chainId: number;
|
|
1299
|
+
nativeCoinOperationHashPrefix: string;
|
|
1300
|
+
tokenOperationHashPrefix: string;
|
|
1301
|
+
}
|
|
1302
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
1303
|
+
name: string;
|
|
1304
|
+
family: CoinFamily;
|
|
1305
|
+
explorerUrl: string;
|
|
1306
|
+
accountExplorerUrl: string;
|
|
1307
|
+
chainId: number;
|
|
1308
|
+
nativeCoinOperationHashPrefix: string;
|
|
1309
|
+
tokenOperationHashPrefix: string;
|
|
1310
|
+
forwarderFactoryAddress: string;
|
|
1311
|
+
forwarderImplementationAddress: string;
|
|
1312
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1313
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1314
|
+
walletFactoryAddress: string;
|
|
1315
|
+
walletImplementationAddress: string;
|
|
1316
|
+
}
|
|
1317
|
+
declare class ZkSyncEra extends Mainnet implements EthereumNetwork {
|
|
1318
|
+
name: string;
|
|
1319
|
+
family: CoinFamily;
|
|
1320
|
+
explorerUrl: string;
|
|
1321
|
+
accountExplorerUrl: string;
|
|
1322
|
+
chainId: number;
|
|
1323
|
+
nativeCoinOperationHashPrefix: string;
|
|
1324
|
+
tokenOperationHashPrefix: string;
|
|
1325
|
+
}
|
|
1326
|
+
declare class ZkSyncEraTestnet extends Testnet implements EthereumNetwork {
|
|
1327
|
+
name: string;
|
|
1328
|
+
family: CoinFamily;
|
|
1329
|
+
explorerUrl: string;
|
|
1330
|
+
accountExplorerUrl: string;
|
|
1331
|
+
chainId: number;
|
|
1332
|
+
nativeCoinOperationHashPrefix: string;
|
|
1333
|
+
tokenOperationHashPrefix: string;
|
|
1334
|
+
forwarderFactoryAddress: string;
|
|
1335
|
+
forwarderImplementationAddress: string;
|
|
1336
|
+
walletV4ForwarderFactoryAddress: string;
|
|
1337
|
+
walletV4ForwarderImplementationAddress: string;
|
|
1338
|
+
walletFactoryAddress: string;
|
|
1339
|
+
walletImplementationAddress: string;
|
|
1340
|
+
}
|
|
1341
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
1342
|
+
name: string;
|
|
1343
|
+
family: CoinFamily;
|
|
1344
|
+
explorerUrl: string;
|
|
1345
|
+
accountExplorerUrl: string;
|
|
1346
|
+
chainId: number;
|
|
1347
|
+
nativeCoinOperationHashPrefix: string;
|
|
1348
|
+
tokenOperationHashPrefix: string;
|
|
1349
|
+
batcherContractAddress: string;
|
|
1350
|
+
forwarderFactoryAddress: string;
|
|
1351
|
+
forwarderImplementationAddress: string;
|
|
1352
|
+
}
|
|
1353
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1354
|
+
name: string;
|
|
1355
|
+
family: CoinFamily;
|
|
1356
|
+
explorerUrl: string;
|
|
1357
|
+
accountExplorerUrl: string;
|
|
1358
|
+
chainId: number;
|
|
1359
|
+
nativeCoinOperationHashPrefix: string;
|
|
1360
|
+
tokenOperationHashPrefix: string;
|
|
1361
|
+
batcherContractAddress: string;
|
|
1362
|
+
forwarderFactoryAddress: string;
|
|
1363
|
+
forwarderImplementationAddress: string;
|
|
1364
|
+
}
|
|
1365
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1366
|
+
name: string;
|
|
1367
|
+
family: CoinFamily;
|
|
1368
|
+
explorerUrl: string;
|
|
1369
|
+
accountExplorerUrl: string;
|
|
1370
|
+
chainId: number;
|
|
1371
|
+
nativeCoinOperationHashPrefix: string;
|
|
1372
|
+
batcherContractAddress: string;
|
|
1373
|
+
forwarderFactoryAddress: string;
|
|
1374
|
+
forwarderImplementationAddress: string;
|
|
1375
|
+
}
|
|
1376
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1377
|
+
name: string;
|
|
1378
|
+
family: CoinFamily;
|
|
1379
|
+
explorerUrl: string;
|
|
1380
|
+
accountExplorerUrl: string;
|
|
1381
|
+
chainId: number;
|
|
1382
|
+
nativeCoinOperationHashPrefix: string;
|
|
1383
|
+
batcherContractAddress: string;
|
|
1384
|
+
forwarderFactoryAddress: string;
|
|
1385
|
+
forwarderImplementationAddress: string;
|
|
1386
|
+
}
|
|
1387
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1388
|
+
name: string;
|
|
1389
|
+
family: CoinFamily;
|
|
1390
|
+
explorerUrl: string;
|
|
1391
|
+
accountExplorerUrl: string;
|
|
1392
|
+
chainId: number;
|
|
1393
|
+
nativeCoinOperationHashPrefix: string;
|
|
1394
|
+
batcherContractAddress: string;
|
|
1395
|
+
forwarderFactoryAddress: string;
|
|
1396
|
+
forwarderImplementationAddress: string;
|
|
1397
|
+
}
|
|
1398
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1399
|
+
name: string;
|
|
1400
|
+
family: CoinFamily;
|
|
1401
|
+
explorerUrl: string;
|
|
1402
|
+
accountExplorerUrl: string;
|
|
1403
|
+
chainId: number;
|
|
1404
|
+
nativeCoinOperationHashPrefix: string;
|
|
1405
|
+
batcherContractAddress: string;
|
|
1406
|
+
forwarderFactoryAddress: string;
|
|
1407
|
+
forwarderImplementationAddress: string;
|
|
1408
|
+
}
|
|
1409
|
+
declare class IP extends Mainnet implements EthereumNetwork {
|
|
1410
|
+
name: string;
|
|
1411
|
+
family: CoinFamily;
|
|
1412
|
+
explorerUrl: string;
|
|
1413
|
+
accountExplorerUrl: string;
|
|
1414
|
+
chainId: number;
|
|
1415
|
+
nativeCoinOperationHashPrefix: string;
|
|
1416
|
+
}
|
|
1417
|
+
declare class IPTestnet extends Testnet implements EthereumNetwork {
|
|
1418
|
+
name: string;
|
|
1419
|
+
family: CoinFamily;
|
|
1420
|
+
explorerUrl: string;
|
|
1421
|
+
accountExplorerUrl: string;
|
|
1422
|
+
chainId: number;
|
|
1423
|
+
nativeCoinOperationHashPrefix: string;
|
|
1424
|
+
}
|
|
1425
|
+
declare class ApeChain extends Mainnet implements EthereumNetwork {
|
|
1426
|
+
name: string;
|
|
1427
|
+
family: CoinFamily;
|
|
1428
|
+
explorerUrl: string;
|
|
1429
|
+
accountExplorerUrl: string;
|
|
1430
|
+
chainId: number;
|
|
1431
|
+
nativeCoinOperationHashPrefix: string;
|
|
1432
|
+
}
|
|
1433
|
+
declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1434
|
+
name: string;
|
|
1435
|
+
family: CoinFamily;
|
|
1436
|
+
explorerUrl: string;
|
|
1437
|
+
accountExplorerUrl: string;
|
|
1438
|
+
chainId: number;
|
|
1439
|
+
nativeCoinOperationHashPrefix: string;
|
|
1440
|
+
forwarderFactoryAddress: string;
|
|
1441
|
+
forwarderImplementationAddress: string;
|
|
1442
|
+
walletFactoryAddress: string;
|
|
1443
|
+
walletImplementationAddress: string;
|
|
1444
|
+
batcherContractAddress: string;
|
|
1445
|
+
}
|
|
1446
|
+
declare class AbstractEth 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 AbstractEthTestnet 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 Pharos 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 PharosTestnet extends Testnet implements EthereumNetwork {
|
|
1471
|
+
name: string;
|
|
1472
|
+
family: CoinFamily;
|
|
1473
|
+
explorerUrl: string;
|
|
1474
|
+
accountExplorerUrl: string;
|
|
1475
|
+
chainId: number;
|
|
1476
|
+
nativeCoinOperationHashPrefix: string;
|
|
1477
|
+
forwarderFactoryAddress: string;
|
|
1478
|
+
forwarderImplementationAddress: string;
|
|
1479
|
+
walletFactoryAddress: string;
|
|
1480
|
+
walletImplementationAddress: string;
|
|
1481
|
+
batcherContractAddress: string;
|
|
1482
|
+
}
|
|
1483
|
+
declare class Creditcoin extends Mainnet implements EthereumNetwork {
|
|
1484
|
+
name: string;
|
|
1485
|
+
family: CoinFamily;
|
|
1486
|
+
explorerUrl: string;
|
|
1487
|
+
accountExplorerUrl: string;
|
|
1488
|
+
chainId: number;
|
|
1489
|
+
nativeCoinOperationHashPrefix: string;
|
|
1490
|
+
forwarderFactoryAddress: string;
|
|
1491
|
+
forwarderImplementationAddress: string;
|
|
1492
|
+
walletFactoryAddress: string;
|
|
1493
|
+
walletImplementationAddress: string;
|
|
1494
|
+
batcherContractAddress: string;
|
|
1495
|
+
}
|
|
1496
|
+
declare class Plasma extends Mainnet implements EthereumNetwork {
|
|
1497
|
+
name: string;
|
|
1498
|
+
family: CoinFamily;
|
|
1499
|
+
explorerUrl: string;
|
|
1500
|
+
accountExplorerUrl: string;
|
|
1501
|
+
chainId: number;
|
|
1502
|
+
nativeCoinOperationHashPrefix: string;
|
|
1503
|
+
}
|
|
1504
|
+
declare class PlasmaTestnet extends Testnet implements EthereumNetwork {
|
|
1505
|
+
name: string;
|
|
1506
|
+
family: CoinFamily;
|
|
1507
|
+
explorerUrl: string;
|
|
1508
|
+
accountExplorerUrl: string;
|
|
1509
|
+
chainId: number;
|
|
1510
|
+
nativeCoinOperationHashPrefix: string;
|
|
1511
|
+
}
|
|
1512
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1513
|
+
name: string;
|
|
1514
|
+
family: CoinFamily;
|
|
1515
|
+
explorerUrl: string;
|
|
1516
|
+
accountExplorerUrl: string;
|
|
1517
|
+
chainId: number;
|
|
1518
|
+
nativeCoinOperationHashPrefix: string;
|
|
1519
|
+
forwarderFactoryAddress: string;
|
|
1520
|
+
forwarderImplementationAddress: string;
|
|
1521
|
+
walletFactoryAddress: string;
|
|
1522
|
+
walletImplementationAddress: string;
|
|
1523
|
+
batcherContractAddress: string;
|
|
1524
|
+
}
|
|
1525
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1526
|
+
name: string;
|
|
1527
|
+
family: CoinFamily;
|
|
1528
|
+
explorerUrl: string;
|
|
1529
|
+
accountExplorerUrl: string;
|
|
1530
|
+
chainId: number;
|
|
1531
|
+
nativeCoinOperationHashPrefix: string;
|
|
1532
|
+
forwarderFactoryAddress: string;
|
|
1533
|
+
forwarderImplementationAddress: string;
|
|
1534
|
+
walletFactoryAddress: string;
|
|
1535
|
+
walletImplementationAddress: string;
|
|
1536
|
+
batcherContractAddress: string;
|
|
1537
|
+
}
|
|
1538
|
+
declare class Hyperliquid extends Mainnet implements AccountNetwork {
|
|
1539
|
+
name: string;
|
|
1540
|
+
family: CoinFamily;
|
|
1541
|
+
explorerUrl: string;
|
|
1542
|
+
accountExplorerUrl: string;
|
|
1543
|
+
}
|
|
1544
|
+
declare class HyperliquidTestnet extends Testnet implements AccountNetwork {
|
|
1545
|
+
name: string;
|
|
1546
|
+
family: CoinFamily;
|
|
1547
|
+
explorerUrl: string;
|
|
1548
|
+
accountExplorerUrl: string;
|
|
1549
|
+
}
|
|
1550
|
+
declare class KavaEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1551
|
+
name: string;
|
|
1552
|
+
family: CoinFamily;
|
|
1553
|
+
explorerUrl: string;
|
|
1554
|
+
accountExplorerUrl: string;
|
|
1555
|
+
chainId: number;
|
|
1556
|
+
nativeCoinOperationHashPrefix: string;
|
|
1557
|
+
}
|
|
1558
|
+
declare class KavaEVM extends Mainnet implements EthereumNetwork {
|
|
1559
|
+
name: string;
|
|
1560
|
+
family: CoinFamily;
|
|
1561
|
+
explorerUrl: string;
|
|
1562
|
+
accountExplorerUrl: string;
|
|
1563
|
+
chainId: number;
|
|
1564
|
+
nativeCoinOperationHashPrefix: string;
|
|
1565
|
+
}
|
|
1566
|
+
declare class LineaETH extends Mainnet implements EthereumNetwork {
|
|
1567
|
+
name: string;
|
|
1568
|
+
family: CoinFamily;
|
|
1569
|
+
explorerUrl: string;
|
|
1570
|
+
accountExplorerUrl: string;
|
|
1571
|
+
chainId: number;
|
|
1572
|
+
nativeCoinOperationHashPrefix: string;
|
|
1573
|
+
}
|
|
1574
|
+
declare class LineaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1575
|
+
name: string;
|
|
1576
|
+
family: CoinFamily;
|
|
1577
|
+
explorerUrl: string;
|
|
1578
|
+
accountExplorerUrl: string;
|
|
1579
|
+
chainId: number;
|
|
1580
|
+
nativeCoinOperationHashPrefix: string;
|
|
1581
|
+
}
|
|
1582
|
+
declare class FluentETH extends Mainnet implements EthereumNetwork {
|
|
1583
|
+
name: string;
|
|
1584
|
+
family: CoinFamily;
|
|
1585
|
+
explorerUrl: string;
|
|
1586
|
+
accountExplorerUrl: string;
|
|
1587
|
+
chainId: number;
|
|
1588
|
+
nativeCoinOperationHashPrefix: string;
|
|
1589
|
+
}
|
|
1590
|
+
declare class FluentETHTestnet extends Testnet implements EthereumNetwork {
|
|
1591
|
+
name: string;
|
|
1592
|
+
family: CoinFamily;
|
|
1593
|
+
explorerUrl: string;
|
|
1594
|
+
accountExplorerUrl: string;
|
|
1595
|
+
chainId: number;
|
|
1596
|
+
nativeCoinOperationHashPrefix: string;
|
|
1597
|
+
}
|
|
1598
|
+
declare class Mantle extends Mainnet implements EthereumNetwork {
|
|
1599
|
+
name: string;
|
|
1600
|
+
family: CoinFamily;
|
|
1601
|
+
explorerUrl: string;
|
|
1602
|
+
accountExplorerUrl: string;
|
|
1603
|
+
chainId: number;
|
|
1604
|
+
nativeCoinOperationHashPrefix: string;
|
|
1605
|
+
}
|
|
1606
|
+
declare class MantleTestnet extends Testnet implements EthereumNetwork {
|
|
1607
|
+
name: string;
|
|
1608
|
+
family: CoinFamily;
|
|
1609
|
+
explorerUrl: string;
|
|
1610
|
+
accountExplorerUrl: string;
|
|
1611
|
+
chainId: number;
|
|
1612
|
+
nativeCoinOperationHashPrefix: string;
|
|
1613
|
+
}
|
|
1614
|
+
declare class JovayETH extends Mainnet implements EthereumNetwork {
|
|
1615
|
+
name: string;
|
|
1616
|
+
family: CoinFamily;
|
|
1617
|
+
explorerUrl: string;
|
|
1618
|
+
accountExplorerUrl: string;
|
|
1619
|
+
chainId: number;
|
|
1620
|
+
nativeCoinOperationHashPrefix: string;
|
|
1621
|
+
}
|
|
1622
|
+
declare class JovayETHTestnet extends Testnet implements EthereumNetwork {
|
|
1623
|
+
name: string;
|
|
1624
|
+
family: CoinFamily;
|
|
1625
|
+
explorerUrl: string;
|
|
1626
|
+
accountExplorerUrl: string;
|
|
1627
|
+
chainId: number;
|
|
1628
|
+
nativeCoinOperationHashPrefix: string;
|
|
1629
|
+
}
|
|
1630
|
+
declare class Unieth extends Mainnet implements EthereumNetwork {
|
|
1631
|
+
name: string;
|
|
1632
|
+
family: CoinFamily;
|
|
1633
|
+
explorerUrl: string;
|
|
1634
|
+
accountExplorerUrl: string;
|
|
1635
|
+
chainId: number;
|
|
1636
|
+
nativeCoinOperationHashPrefix: string;
|
|
1637
|
+
}
|
|
1638
|
+
declare class UniethTestnet extends Testnet implements EthereumNetwork {
|
|
1639
|
+
name: string;
|
|
1640
|
+
family: CoinFamily;
|
|
1641
|
+
explorerUrl: string;
|
|
1642
|
+
accountExplorerUrl: string;
|
|
1643
|
+
chainId: number;
|
|
1644
|
+
nativeCoinOperationHashPrefix: string;
|
|
1645
|
+
}
|
|
1646
|
+
declare class Hppeth extends Mainnet implements EthereumNetwork {
|
|
1647
|
+
name: string;
|
|
1648
|
+
family: CoinFamily;
|
|
1649
|
+
explorerUrl: string;
|
|
1650
|
+
accountExplorerUrl: string;
|
|
1651
|
+
chainId: number;
|
|
1652
|
+
nativeCoinOperationHashPrefix: string;
|
|
1653
|
+
}
|
|
1654
|
+
declare class HppethTestnet extends Testnet implements EthereumNetwork {
|
|
1655
|
+
name: string;
|
|
1656
|
+
family: CoinFamily;
|
|
1657
|
+
explorerUrl: string;
|
|
1658
|
+
accountExplorerUrl: string;
|
|
1659
|
+
chainId: number;
|
|
1660
|
+
nativeCoinOperationHashPrefix: string;
|
|
1661
|
+
}
|
|
1662
|
+
declare class HoodethTestnet extends Testnet implements EthereumNetwork {
|
|
1663
|
+
name: string;
|
|
1664
|
+
family: CoinFamily;
|
|
1665
|
+
explorerUrl: string;
|
|
1666
|
+
accountExplorerUrl: string;
|
|
1667
|
+
chainId: number;
|
|
1668
|
+
nativeCoinOperationHashPrefix: string;
|
|
1669
|
+
}
|
|
1670
|
+
declare class Hoodeth extends Mainnet implements EthereumNetwork {
|
|
1671
|
+
name: string;
|
|
1672
|
+
family: CoinFamily;
|
|
1673
|
+
explorerUrl: string;
|
|
1674
|
+
accountExplorerUrl: string;
|
|
1675
|
+
chainId: number;
|
|
1676
|
+
nativeCoinOperationHashPrefix: string;
|
|
1677
|
+
}
|
|
1678
|
+
declare class HumanityProtocol extends Mainnet implements EthereumNetwork {
|
|
1679
|
+
name: string;
|
|
1680
|
+
family: CoinFamily;
|
|
1681
|
+
explorerUrl: string;
|
|
1682
|
+
accountExplorerUrl: string;
|
|
1683
|
+
chainId: number;
|
|
1684
|
+
nativeCoinOperationHashPrefix: string;
|
|
1685
|
+
}
|
|
1686
|
+
declare class HumanityProtocolTestnet extends Testnet implements EthereumNetwork {
|
|
1687
|
+
name: string;
|
|
1688
|
+
family: CoinFamily;
|
|
1689
|
+
explorerUrl: string;
|
|
1690
|
+
accountExplorerUrl: string;
|
|
1691
|
+
chainId: number;
|
|
1692
|
+
nativeCoinOperationHashPrefix: string;
|
|
1693
|
+
}
|
|
1694
|
+
declare class Xlayer extends Mainnet implements EthereumNetwork {
|
|
1695
|
+
name: string;
|
|
1696
|
+
family: CoinFamily;
|
|
1697
|
+
explorerUrl: string;
|
|
1698
|
+
accountExplorerUrl: string;
|
|
1699
|
+
chainId: number;
|
|
1700
|
+
nativeCoinOperationHashPrefix: string;
|
|
1701
|
+
}
|
|
1702
|
+
declare class XlayerTestnet extends Testnet implements EthereumNetwork {
|
|
1703
|
+
name: string;
|
|
1704
|
+
family: CoinFamily;
|
|
1705
|
+
explorerUrl: string;
|
|
1706
|
+
accountExplorerUrl: string;
|
|
1707
|
+
chainId: number;
|
|
1708
|
+
nativeCoinOperationHashPrefix: string;
|
|
1709
|
+
}
|
|
1710
|
+
declare class Morph extends Mainnet implements EthereumNetwork {
|
|
1711
|
+
name: string;
|
|
1712
|
+
family: CoinFamily;
|
|
1713
|
+
explorerUrl: string;
|
|
1714
|
+
accountExplorerUrl: string;
|
|
1715
|
+
chainId: number;
|
|
1716
|
+
nativeCoinOperationHashPrefix: string;
|
|
1717
|
+
}
|
|
1718
|
+
declare class MorphTestnet extends Testnet implements EthereumNetwork {
|
|
1719
|
+
name: string;
|
|
1720
|
+
family: CoinFamily;
|
|
1721
|
+
explorerUrl: string;
|
|
1722
|
+
accountExplorerUrl: string;
|
|
1723
|
+
chainId: number;
|
|
1724
|
+
nativeCoinOperationHashPrefix: string;
|
|
1725
|
+
}
|
|
1726
|
+
declare class MorphETH extends Mainnet implements EthereumNetwork {
|
|
1727
|
+
name: string;
|
|
1728
|
+
family: CoinFamily;
|
|
1729
|
+
explorerUrl: string;
|
|
1730
|
+
accountExplorerUrl: string;
|
|
1731
|
+
chainId: number;
|
|
1732
|
+
nativeCoinOperationHashPrefix: string;
|
|
1733
|
+
}
|
|
1734
|
+
declare class MorphETHTestnet extends Testnet implements EthereumNetwork {
|
|
1735
|
+
name: string;
|
|
1736
|
+
family: CoinFamily;
|
|
1737
|
+
explorerUrl: string;
|
|
1738
|
+
accountExplorerUrl: string;
|
|
1739
|
+
chainId: number;
|
|
1740
|
+
nativeCoinOperationHashPrefix: string;
|
|
1741
|
+
}
|
|
1742
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1743
|
+
name: string;
|
|
1744
|
+
family: CoinFamily;
|
|
1745
|
+
explorerUrl: string;
|
|
1746
|
+
accountExplorerUrl: string;
|
|
1747
|
+
chainId: number;
|
|
1748
|
+
nativeCoinOperationHashPrefix: string;
|
|
1749
|
+
forwarderFactoryAddress: string;
|
|
1750
|
+
forwarderImplementationAddress: string;
|
|
1751
|
+
walletFactoryAddress: string;
|
|
1752
|
+
walletImplementationAddress: string;
|
|
1753
|
+
batcherContractAddress: string;
|
|
1754
|
+
}
|
|
1755
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1756
|
+
name: string;
|
|
1757
|
+
family: CoinFamily;
|
|
1758
|
+
explorerUrl: string;
|
|
1759
|
+
accountExplorerUrl: string;
|
|
1760
|
+
chainId: number;
|
|
1761
|
+
nativeCoinOperationHashPrefix: string;
|
|
1762
|
+
}
|
|
1763
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1764
|
+
name: string;
|
|
1765
|
+
family: CoinFamily;
|
|
1766
|
+
explorerUrl: string;
|
|
1767
|
+
accountExplorerUrl: string;
|
|
1768
|
+
chainId: number;
|
|
1769
|
+
nativeCoinOperationHashPrefix: string;
|
|
1770
|
+
walletFactoryAddress: string;
|
|
1771
|
+
batcherContractAddress: string;
|
|
1772
|
+
forwarderFactoryAddress: string;
|
|
1773
|
+
forwarderImplementationAddress: string;
|
|
1774
|
+
walletImplementationAddress: string;
|
|
1775
|
+
}
|
|
1776
|
+
declare class Usdt0 extends Mainnet implements EthereumNetwork {
|
|
1777
|
+
name: string;
|
|
1778
|
+
family: CoinFamily;
|
|
1779
|
+
explorerUrl: string;
|
|
1780
|
+
accountExplorerUrl: string;
|
|
1781
|
+
chainId: number;
|
|
1782
|
+
nativeCoinOperationHashPrefix: string;
|
|
1783
|
+
}
|
|
1784
|
+
declare class Usdt0Testnet extends Testnet implements EthereumNetwork {
|
|
1785
|
+
name: string;
|
|
1786
|
+
family: CoinFamily;
|
|
1787
|
+
explorerUrl: string;
|
|
1788
|
+
accountExplorerUrl: string;
|
|
1789
|
+
chainId: number;
|
|
1790
|
+
nativeCoinOperationHashPrefix: string;
|
|
1791
|
+
}
|
|
1792
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1793
|
+
name: string;
|
|
1794
|
+
family: CoinFamily;
|
|
1795
|
+
explorerUrl: string;
|
|
1796
|
+
accountExplorerUrl: string;
|
|
1797
|
+
chainId: number;
|
|
1798
|
+
nativeCoinOperationHashPrefix: string;
|
|
1799
|
+
}
|
|
1800
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1801
|
+
name: string;
|
|
1802
|
+
family: CoinFamily;
|
|
1803
|
+
explorerUrl: string;
|
|
1804
|
+
accountExplorerUrl: string;
|
|
1805
|
+
chainId: number;
|
|
1806
|
+
nativeCoinOperationHashPrefix: string;
|
|
1807
|
+
walletFactoryAddress: string;
|
|
1808
|
+
batcherContractAddress: string;
|
|
1809
|
+
forwarderFactoryAddress: string;
|
|
1810
|
+
forwarderImplementationAddress: string;
|
|
1811
|
+
walletImplementationAddress: string;
|
|
1812
|
+
}
|
|
1813
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1814
|
+
name: string;
|
|
1815
|
+
family: CoinFamily;
|
|
1816
|
+
explorerUrl: string;
|
|
1817
|
+
accountExplorerUrl: string;
|
|
1818
|
+
chainId: number;
|
|
1819
|
+
nativeCoinOperationHashPrefix: string;
|
|
1820
|
+
}
|
|
1821
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1822
|
+
name: string;
|
|
1823
|
+
family: CoinFamily;
|
|
1824
|
+
explorerUrl: string;
|
|
1825
|
+
accountExplorerUrl: string;
|
|
1826
|
+
chainId: number;
|
|
1827
|
+
nativeCoinOperationHashPrefix: string;
|
|
1828
|
+
walletFactoryAddress: string;
|
|
1829
|
+
batcherContractAddress: string;
|
|
1830
|
+
forwarderFactoryAddress: string;
|
|
1831
|
+
forwarderImplementationAddress: string;
|
|
1832
|
+
walletImplementationAddress: string;
|
|
1833
|
+
}
|
|
1834
|
+
declare class Og extends Mainnet implements EthereumNetwork {
|
|
1835
|
+
name: string;
|
|
1836
|
+
family: CoinFamily;
|
|
1837
|
+
explorerUrl: string;
|
|
1838
|
+
accountExplorerUrl: string;
|
|
1839
|
+
chainId: number;
|
|
1840
|
+
nativeCoinOperationHashPrefix: string;
|
|
1841
|
+
}
|
|
1842
|
+
declare class OgTestnet extends Testnet implements EthereumNetwork {
|
|
1843
|
+
name: string;
|
|
1844
|
+
family: CoinFamily;
|
|
1845
|
+
explorerUrl: string;
|
|
1846
|
+
accountExplorerUrl: string;
|
|
1847
|
+
chainId: number;
|
|
1848
|
+
nativeCoinOperationHashPrefix: string;
|
|
1849
|
+
}
|
|
1850
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1851
|
+
name: string;
|
|
1852
|
+
family: CoinFamily;
|
|
1853
|
+
explorerUrl: string;
|
|
1854
|
+
accountExplorerUrl: string;
|
|
1855
|
+
chainId: number;
|
|
1856
|
+
nativeCoinOperationHashPrefix: string;
|
|
1857
|
+
batcherContractAddress: string;
|
|
1858
|
+
forwarderFactoryAddress: string;
|
|
1859
|
+
forwarderImplementationAddress: string;
|
|
1860
|
+
}
|
|
1861
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1862
|
+
name: string;
|
|
1863
|
+
family: CoinFamily;
|
|
1864
|
+
explorerUrl: string;
|
|
1865
|
+
accountExplorerUrl: string;
|
|
1866
|
+
chainId: number;
|
|
1867
|
+
nativeCoinOperationHashPrefix: string;
|
|
1868
|
+
batcherContractAddress: string;
|
|
1869
|
+
forwarderFactoryAddress: string;
|
|
1870
|
+
forwarderImplementationAddress: string;
|
|
1871
|
+
}
|
|
1872
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1873
|
+
name: string;
|
|
1874
|
+
family: CoinFamily;
|
|
1875
|
+
explorerUrl: string;
|
|
1876
|
+
accountExplorerUrl: string;
|
|
1877
|
+
chainId: number;
|
|
1878
|
+
nativeCoinOperationHashPrefix: string;
|
|
1879
|
+
batcherContractAddress: string;
|
|
1880
|
+
forwarderFactoryAddress: string;
|
|
1881
|
+
forwarderImplementationAddress: string;
|
|
1882
|
+
}
|
|
1883
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1884
|
+
name: string;
|
|
1885
|
+
family: CoinFamily;
|
|
1886
|
+
explorerUrl: string;
|
|
1887
|
+
accountExplorerUrl: string;
|
|
1888
|
+
chainId: number;
|
|
1889
|
+
nativeCoinOperationHashPrefix: string;
|
|
1890
|
+
batcherContractAddress: string;
|
|
1891
|
+
forwarderFactoryAddress: string;
|
|
1892
|
+
forwarderImplementationAddress: string;
|
|
1893
|
+
}
|
|
1894
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1895
|
+
name: string;
|
|
1896
|
+
family: CoinFamily;
|
|
1897
|
+
explorerUrl: string;
|
|
1898
|
+
accountExplorerUrl: string;
|
|
1899
|
+
chainId: number;
|
|
1900
|
+
nativeCoinOperationHashPrefix: string;
|
|
1901
|
+
walletFactoryAddress: string;
|
|
1902
|
+
batcherContractAddress: string;
|
|
1903
|
+
forwarderFactoryAddress: string;
|
|
1904
|
+
forwarderImplementationAddress: string;
|
|
1905
|
+
walletImplementationAddress: string;
|
|
1906
|
+
}
|
|
1907
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1908
|
+
name: string;
|
|
1909
|
+
family: CoinFamily;
|
|
1910
|
+
explorerUrl: string;
|
|
1911
|
+
chainId: number;
|
|
1912
|
+
nativeCoinOperationHashPrefix: string;
|
|
1913
|
+
walletImplementationAddress: string;
|
|
1914
|
+
batcherContractAddress: string;
|
|
1915
|
+
forwarderFactoryAddress: string;
|
|
1916
|
+
forwarderImplementationAddress: string;
|
|
1917
|
+
}
|
|
1918
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1919
|
+
name: string;
|
|
1920
|
+
family: CoinFamily;
|
|
1921
|
+
explorerUrl: string;
|
|
1922
|
+
accountExplorerUrl: string;
|
|
1923
|
+
chainId: number;
|
|
1924
|
+
nativeCoinOperationHashPrefix: string;
|
|
1925
|
+
walletImplementationAddress: string;
|
|
1926
|
+
batcherContractAddress: string;
|
|
1927
|
+
forwarderFactoryAddress: string;
|
|
1928
|
+
forwarderImplementationAddress: string;
|
|
1929
|
+
}
|
|
1930
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1931
|
+
name: string;
|
|
1932
|
+
family: CoinFamily;
|
|
1933
|
+
explorerUrl: string;
|
|
1934
|
+
accountExplorerUrl: string;
|
|
1935
|
+
chainId: number;
|
|
1936
|
+
nativeCoinOperationHashPrefix: string;
|
|
1937
|
+
batcherContractAddress: string;
|
|
1938
|
+
forwarderFactoryAddress: string;
|
|
1939
|
+
forwarderImplementationAddress: string;
|
|
1940
|
+
walletImplementationAddress: string;
|
|
1941
|
+
}
|
|
1942
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1943
|
+
name: string;
|
|
1944
|
+
family: CoinFamily;
|
|
1945
|
+
explorerUrl: string;
|
|
1946
|
+
accountExplorerUrl: string;
|
|
1947
|
+
chainId: number;
|
|
1948
|
+
nativeCoinOperationHashPrefix: string;
|
|
1949
|
+
walletImplementationAddress: string;
|
|
1950
|
+
walletFactoryAddress: string;
|
|
1951
|
+
batcherContractAddress: string;
|
|
1952
|
+
forwarderFactoryAddress: string;
|
|
1953
|
+
forwarderImplementationAddress: string;
|
|
1954
|
+
}
|
|
1955
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1956
|
+
name: string;
|
|
1957
|
+
family: CoinFamily;
|
|
1958
|
+
explorerUrl: string;
|
|
1959
|
+
accountExplorerUrl: string;
|
|
1960
|
+
chainId: number;
|
|
1961
|
+
nativeCoinOperationHashPrefix: string;
|
|
1962
|
+
walletFactoryAddress: string;
|
|
1963
|
+
batcherContractAddress: string;
|
|
1964
|
+
forwarderFactoryAddress: string;
|
|
1965
|
+
forwarderImplementationAddress: string;
|
|
1966
|
+
walletImplementationAddress: string;
|
|
1967
|
+
}
|
|
1968
|
+
declare class ScrollEth extends Mainnet implements EthereumNetwork {
|
|
1969
|
+
name: string;
|
|
1970
|
+
family: CoinFamily;
|
|
1971
|
+
explorerUrl: string;
|
|
1972
|
+
accountExplorerUrl: string;
|
|
1973
|
+
chainId: number;
|
|
1974
|
+
nativeCoinOperationHashPrefix: string;
|
|
1975
|
+
}
|
|
1976
|
+
declare class ScrollEthTestnet extends Testnet implements EthereumNetwork {
|
|
1977
|
+
name: string;
|
|
1978
|
+
family: CoinFamily;
|
|
1979
|
+
explorerUrl: string;
|
|
1980
|
+
accountExplorerUrl: string;
|
|
1981
|
+
chainId: number;
|
|
1982
|
+
nativeCoinOperationHashPrefix: string;
|
|
1983
|
+
}
|
|
1984
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1985
|
+
name: string;
|
|
1986
|
+
family: CoinFamily;
|
|
1987
|
+
explorerUrl: string;
|
|
1988
|
+
accountExplorerUrl: string;
|
|
1989
|
+
chainId: number;
|
|
1990
|
+
nativeCoinOperationHashPrefix: string;
|
|
1991
|
+
}
|
|
1992
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1993
|
+
name: string;
|
|
1994
|
+
family: CoinFamily;
|
|
1995
|
+
explorerUrl: string;
|
|
1996
|
+
accountExplorerUrl: string;
|
|
1997
|
+
chainId: number;
|
|
1998
|
+
nativeCoinOperationHashPrefix: string;
|
|
1999
|
+
walletFactoryAddress: string;
|
|
2000
|
+
batcherContractAddress: string;
|
|
2001
|
+
forwarderFactoryAddress: string;
|
|
2002
|
+
forwarderImplementationAddress: string;
|
|
2003
|
+
walletImplementationAddress: string;
|
|
2004
|
+
}
|
|
2005
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
2006
|
+
name: string;
|
|
2007
|
+
family: CoinFamily;
|
|
2008
|
+
explorerUrl: string;
|
|
2009
|
+
accountExplorerUrl: string;
|
|
2010
|
+
chainId: number;
|
|
2011
|
+
nativeCoinOperationHashPrefix: string;
|
|
2012
|
+
walletFactoryAddress: string;
|
|
2013
|
+
batcherContractAddress: string;
|
|
2014
|
+
forwarderFactoryAddress: string;
|
|
2015
|
+
forwarderImplementationAddress: string;
|
|
2016
|
+
walletImplementationAddress: string;
|
|
2017
|
+
}
|
|
2018
|
+
declare class Somi extends Mainnet implements EthereumNetwork {
|
|
2019
|
+
name: string;
|
|
2020
|
+
family: CoinFamily;
|
|
2021
|
+
explorerUrl: string;
|
|
2022
|
+
chainId: number;
|
|
2023
|
+
nativeCoinOperationHashPrefix: string;
|
|
2024
|
+
walletImplementationAddress: string;
|
|
2025
|
+
walletFactoryAddress: string;
|
|
2026
|
+
forwarderImplementationAddress: string;
|
|
2027
|
+
forwarderFactoryAddress: string;
|
|
2028
|
+
batcherContractAddress: string;
|
|
2029
|
+
}
|
|
2030
|
+
export declare class FlareP extends Mainnet implements FlareNetwork {
|
|
2031
|
+
assetId: string;
|
|
2032
|
+
name: string;
|
|
2033
|
+
family: CoinFamily;
|
|
2034
|
+
explorerUrl: string;
|
|
2035
|
+
accountExplorerUrl: string;
|
|
2036
|
+
blockchainID: string;
|
|
2037
|
+
cChainBlockchainID: string;
|
|
2038
|
+
xChainBlockchainID: string;
|
|
2039
|
+
networkID: number;
|
|
2040
|
+
hrp: string;
|
|
2041
|
+
alias: string;
|
|
2042
|
+
vm: string;
|
|
2043
|
+
minImportToPFee: string;
|
|
2044
|
+
txFee: string;
|
|
2045
|
+
baseTxFee: string;
|
|
2046
|
+
maxImportFee: string;
|
|
2047
|
+
createAssetTxFee: string;
|
|
2048
|
+
createSubnetTx: string;
|
|
2049
|
+
transformSubnetTxFee: string;
|
|
2050
|
+
createChainTx: string;
|
|
2051
|
+
creationTxFee: string;
|
|
2052
|
+
minConsumption: string;
|
|
2053
|
+
maxConsumption: string;
|
|
2054
|
+
maxSupply: string;
|
|
2055
|
+
minStake: string;
|
|
2056
|
+
minStakeDuration: string;
|
|
2057
|
+
maxStakeDuration: string;
|
|
2058
|
+
minDelegationStake: string;
|
|
2059
|
+
minDelegationFee: string;
|
|
2060
|
+
addPrimaryNetworkValidatorFee: string;
|
|
2061
|
+
addSubnetValidatorFee: string;
|
|
2062
|
+
addSubnetDelegatorFee: string;
|
|
2063
|
+
}
|
|
2064
|
+
export declare class FlarePTestnet extends Testnet implements FlareNetwork {
|
|
2065
|
+
name: string;
|
|
2066
|
+
family: CoinFamily;
|
|
2067
|
+
explorerUrl: string;
|
|
2068
|
+
accountExplorerUrl: string;
|
|
2069
|
+
flarePublicUrl: string;
|
|
2070
|
+
blockchainID: string;
|
|
2071
|
+
cChainBlockchainID: string;
|
|
2072
|
+
xChainBlockchainID: string;
|
|
2073
|
+
networkID: number;
|
|
2074
|
+
hrp: string;
|
|
2075
|
+
alias: string;
|
|
2076
|
+
assetId: string;
|
|
2077
|
+
vm: string;
|
|
2078
|
+
minImportToPFee: string;
|
|
2079
|
+
txFee: string;
|
|
2080
|
+
baseTxFee: string;
|
|
2081
|
+
maxImportFee: string;
|
|
2082
|
+
createAssetTxFee: string;
|
|
2083
|
+
createSubnetTx: string;
|
|
2084
|
+
transformSubnetTxFee: string;
|
|
2085
|
+
createChainTx: string;
|
|
2086
|
+
creationTxFee: string;
|
|
2087
|
+
minConsumption: string;
|
|
2088
|
+
maxConsumption: string;
|
|
2089
|
+
maxSupply: string;
|
|
2090
|
+
minStake: string;
|
|
2091
|
+
minStakeDuration: string;
|
|
2092
|
+
maxStakeDuration: string;
|
|
2093
|
+
minDelegationStake: string;
|
|
2094
|
+
minDelegationFee: string;
|
|
2095
|
+
addPrimaryNetworkValidatorFee: string;
|
|
2096
|
+
addSubnetValidatorFee: string;
|
|
2097
|
+
addSubnetDelegatorFee: string;
|
|
2098
|
+
}
|
|
2099
|
+
export declare class Flare extends Mainnet implements EthereumNetwork {
|
|
2100
|
+
name: string;
|
|
2101
|
+
family: CoinFamily;
|
|
2102
|
+
explorerUrl: string;
|
|
2103
|
+
accountExplorerUrl: string;
|
|
2104
|
+
flarePublicUrl: string;
|
|
2105
|
+
chainId: number;
|
|
2106
|
+
nativeCoinOperationHashPrefix: string;
|
|
2107
|
+
walletFactoryAddress: string;
|
|
2108
|
+
walletImplementationAddress: string;
|
|
2109
|
+
batcherContractAddress: string;
|
|
2110
|
+
forwarderFactoryAddress: string;
|
|
2111
|
+
forwarderImplementationAddress: string;
|
|
2112
|
+
}
|
|
2113
|
+
export declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
2114
|
+
name: string;
|
|
2115
|
+
family: CoinFamily;
|
|
2116
|
+
explorerUrl: string;
|
|
2117
|
+
accountExplorerUrl: string;
|
|
2118
|
+
chainId: number;
|
|
2119
|
+
nativeCoinOperationHashPrefix: string;
|
|
2120
|
+
walletFactoryAddress: string;
|
|
2121
|
+
walletImplementationAddress: string;
|
|
2122
|
+
batcherContractAddress: string;
|
|
2123
|
+
forwarderFactoryAddress: string;
|
|
2124
|
+
forwarderImplementationAddress: string;
|
|
2125
|
+
}
|
|
2126
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
734
2127
|
name: string;
|
|
735
2128
|
family: CoinFamily;
|
|
736
2129
|
explorerUrl: string;
|
|
737
|
-
|
|
738
|
-
|
|
2130
|
+
accountExplorerUrl: string;
|
|
2131
|
+
chainId: number;
|
|
2132
|
+
nativeCoinOperationHashPrefix: string;
|
|
2133
|
+
batcherContractAddress: string;
|
|
2134
|
+
forwarderFactoryAddress: string;
|
|
2135
|
+
forwarderImplementationAddress: string;
|
|
739
2136
|
}
|
|
740
|
-
declare class
|
|
2137
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
741
2138
|
name: string;
|
|
742
2139
|
family: CoinFamily;
|
|
743
2140
|
explorerUrl: string;
|
|
744
2141
|
accountExplorerUrl: string;
|
|
745
2142
|
chainId: number;
|
|
2143
|
+
nativeCoinOperationHashPrefix: string;
|
|
2144
|
+
batcherContractAddress: string;
|
|
746
2145
|
forwarderFactoryAddress: string;
|
|
747
2146
|
forwarderImplementationAddress: string;
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
2147
|
+
}
|
|
2148
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
2149
|
+
name: string;
|
|
2150
|
+
family: CoinFamily;
|
|
2151
|
+
explorerUrl: string;
|
|
2152
|
+
accountExplorerUrl: string;
|
|
2153
|
+
chainId: number;
|
|
751
2154
|
nativeCoinOperationHashPrefix: string;
|
|
752
2155
|
tokenOperationHashPrefix: string;
|
|
2156
|
+
forwarderFactoryAddress: string;
|
|
2157
|
+
forwarderImplementationAddress: string;
|
|
2158
|
+
walletFactoryAddress: string;
|
|
2159
|
+
walletImplementationAddress: string;
|
|
753
2160
|
}
|
|
754
|
-
declare class
|
|
2161
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
755
2162
|
name: string;
|
|
756
2163
|
family: CoinFamily;
|
|
757
2164
|
explorerUrl: string;
|
|
758
2165
|
accountExplorerUrl: string;
|
|
759
2166
|
chainId: number;
|
|
2167
|
+
nativeCoinOperationHashPrefix: string;
|
|
2168
|
+
tokenOperationHashPrefix: string;
|
|
760
2169
|
forwarderFactoryAddress: string;
|
|
761
2170
|
forwarderImplementationAddress: string;
|
|
762
2171
|
walletFactoryAddress: string;
|
|
763
2172
|
walletImplementationAddress: string;
|
|
764
|
-
|
|
2173
|
+
}
|
|
2174
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
2175
|
+
name: string;
|
|
2176
|
+
family: CoinFamily;
|
|
2177
|
+
explorerUrl: string;
|
|
2178
|
+
specName: string;
|
|
2179
|
+
genesisHash: string;
|
|
2180
|
+
specVersion: number;
|
|
2181
|
+
chainName: string;
|
|
2182
|
+
txVersion: number;
|
|
2183
|
+
}
|
|
2184
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
2185
|
+
name: string;
|
|
2186
|
+
family: CoinFamily;
|
|
2187
|
+
explorerUrl: string;
|
|
2188
|
+
specName: SubstrateSpecNameType;
|
|
2189
|
+
genesisHash: string;
|
|
2190
|
+
specVersion: number;
|
|
2191
|
+
chainName: string;
|
|
2192
|
+
txVersion: number;
|
|
2193
|
+
}
|
|
2194
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
2195
|
+
name: string;
|
|
2196
|
+
family: CoinFamily;
|
|
2197
|
+
explorerUrl: string;
|
|
2198
|
+
accountExplorerUrl: string;
|
|
2199
|
+
chainId: number;
|
|
2200
|
+
forwarderFactoryAddress: string;
|
|
2201
|
+
forwarderImplementationAddress: string;
|
|
2202
|
+
}
|
|
2203
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
2204
|
+
name: string;
|
|
2205
|
+
family: CoinFamily;
|
|
2206
|
+
explorerUrl: string;
|
|
2207
|
+
accountExplorerUrl: string;
|
|
2208
|
+
chainId: number;
|
|
2209
|
+
forwarderFactoryAddress: string;
|
|
2210
|
+
forwarderImplementationAddress: string;
|
|
2211
|
+
}
|
|
2212
|
+
declare class Iota extends Mainnet implements AccountNetwork {
|
|
2213
|
+
name: string;
|
|
2214
|
+
family: CoinFamily;
|
|
2215
|
+
explorerUrl: string;
|
|
2216
|
+
accountExplorerUrl: string;
|
|
2217
|
+
}
|
|
2218
|
+
declare class IotaTestnet extends Testnet implements AccountNetwork {
|
|
2219
|
+
name: string;
|
|
2220
|
+
family: CoinFamily;
|
|
2221
|
+
explorerUrl: string;
|
|
2222
|
+
accountExplorerUrl: string;
|
|
2223
|
+
}
|
|
2224
|
+
declare class Flow extends Mainnet implements EthereumNetwork {
|
|
2225
|
+
name: string;
|
|
2226
|
+
family: CoinFamily;
|
|
2227
|
+
explorerUrl: string;
|
|
2228
|
+
accountExplorerUrl: string;
|
|
2229
|
+
chainId: number;
|
|
2230
|
+
nativeCoinOperationHashPrefix: string;
|
|
2231
|
+
}
|
|
2232
|
+
declare class FlowTestnet extends Testnet implements EthereumNetwork {
|
|
2233
|
+
name: string;
|
|
2234
|
+
family: CoinFamily;
|
|
2235
|
+
explorerUrl: string;
|
|
2236
|
+
accountExplorerUrl: string;
|
|
2237
|
+
chainId: number;
|
|
2238
|
+
nativeCoinOperationHashPrefix: string;
|
|
2239
|
+
}
|
|
2240
|
+
declare class MegaETH extends Mainnet implements EthereumNetwork {
|
|
2241
|
+
name: string;
|
|
2242
|
+
family: CoinFamily;
|
|
2243
|
+
explorerUrl: string;
|
|
2244
|
+
accountExplorerUrl: string;
|
|
2245
|
+
chainId: number;
|
|
2246
|
+
nativeCoinOperationHashPrefix: string;
|
|
2247
|
+
}
|
|
2248
|
+
declare class MegaETHTestnet extends Testnet implements EthereumNetwork {
|
|
2249
|
+
name: string;
|
|
2250
|
+
family: CoinFamily;
|
|
2251
|
+
explorerUrl: string;
|
|
2252
|
+
accountExplorerUrl: string;
|
|
2253
|
+
chainId: number;
|
|
2254
|
+
nativeCoinOperationHashPrefix: string;
|
|
2255
|
+
}
|
|
2256
|
+
declare class Plume extends Mainnet implements EthereumNetwork {
|
|
2257
|
+
name: string;
|
|
2258
|
+
family: CoinFamily;
|
|
2259
|
+
explorerUrl: string;
|
|
2260
|
+
accountExplorerUrl: string;
|
|
2261
|
+
chainId: number;
|
|
2262
|
+
nativeCoinOperationHashPrefix: string;
|
|
2263
|
+
}
|
|
2264
|
+
declare class HederaEVMTestnet extends Testnet implements EthereumNetwork {
|
|
2265
|
+
name: string;
|
|
2266
|
+
family: CoinFamily;
|
|
2267
|
+
explorerUrl: string;
|
|
2268
|
+
accountExplorerUrl: string;
|
|
2269
|
+
chainId: number;
|
|
2270
|
+
nativeCoinOperationHashPrefix: string;
|
|
2271
|
+
}
|
|
2272
|
+
declare class HederaEVM extends Mainnet implements EthereumNetwork {
|
|
2273
|
+
name: string;
|
|
2274
|
+
family: CoinFamily;
|
|
2275
|
+
explorerUrl: string;
|
|
2276
|
+
accountExplorerUrl: string;
|
|
2277
|
+
chainId: number;
|
|
2278
|
+
nativeCoinOperationHashPrefix: string;
|
|
2279
|
+
}
|
|
2280
|
+
declare class HemiEth extends Mainnet implements EthereumNetwork {
|
|
2281
|
+
name: string;
|
|
2282
|
+
family: CoinFamily;
|
|
2283
|
+
explorerUrl: string;
|
|
2284
|
+
accountExplorerUrl: string;
|
|
2285
|
+
chainId: number;
|
|
2286
|
+
nativeCoinOperationHashPrefix: string;
|
|
2287
|
+
}
|
|
2288
|
+
declare class HemiEthTestnet extends Testnet implements EthereumNetwork {
|
|
2289
|
+
name: string;
|
|
2290
|
+
family: CoinFamily;
|
|
2291
|
+
explorerUrl: string;
|
|
2292
|
+
accountExplorerUrl: string;
|
|
2293
|
+
chainId: number;
|
|
2294
|
+
nativeCoinOperationHashPrefix: string;
|
|
2295
|
+
}
|
|
2296
|
+
declare class KatanaEth extends Mainnet implements EthereumNetwork {
|
|
2297
|
+
name: string;
|
|
2298
|
+
family: CoinFamily;
|
|
2299
|
+
explorerUrl: string;
|
|
2300
|
+
accountExplorerUrl: string;
|
|
2301
|
+
chainId: number;
|
|
2302
|
+
nativeCoinOperationHashPrefix: string;
|
|
2303
|
+
}
|
|
2304
|
+
declare class KatanaEthTestnet extends Testnet implements EthereumNetwork {
|
|
2305
|
+
name: string;
|
|
2306
|
+
family: CoinFamily;
|
|
2307
|
+
explorerUrl: string;
|
|
2308
|
+
accountExplorerUrl: string;
|
|
2309
|
+
chainId: number;
|
|
2310
|
+
nativeCoinOperationHashPrefix: string;
|
|
2311
|
+
}
|
|
2312
|
+
declare class PrividiumETH extends Mainnet implements EthereumNetwork {
|
|
2313
|
+
name: string;
|
|
2314
|
+
family: CoinFamily;
|
|
2315
|
+
explorerUrl: string;
|
|
2316
|
+
accountExplorerUrl: string;
|
|
2317
|
+
chainId: number;
|
|
2318
|
+
nativeCoinOperationHashPrefix: string;
|
|
2319
|
+
}
|
|
2320
|
+
declare class PrividiumETHTestnet extends Testnet implements EthereumNetwork {
|
|
2321
|
+
name: string;
|
|
2322
|
+
family: CoinFamily;
|
|
2323
|
+
explorerUrl: string;
|
|
2324
|
+
accountExplorerUrl: string;
|
|
2325
|
+
chainId: number;
|
|
2326
|
+
nativeCoinOperationHashPrefix: string;
|
|
2327
|
+
}
|
|
2328
|
+
declare class InkEth extends Mainnet implements EthereumNetwork {
|
|
2329
|
+
name: string;
|
|
2330
|
+
family: CoinFamily;
|
|
2331
|
+
explorerUrl: string;
|
|
2332
|
+
accountExplorerUrl: string;
|
|
2333
|
+
chainId: number;
|
|
2334
|
+
nativeCoinOperationHashPrefix: string;
|
|
2335
|
+
}
|
|
2336
|
+
declare class InkEthTestnet extends Testnet implements EthereumNetwork {
|
|
2337
|
+
name: string;
|
|
2338
|
+
family: CoinFamily;
|
|
2339
|
+
explorerUrl: string;
|
|
2340
|
+
accountExplorerUrl: string;
|
|
2341
|
+
chainId: number;
|
|
2342
|
+
nativeCoinOperationHashPrefix: string;
|
|
2343
|
+
}
|
|
2344
|
+
declare class PlumeTestnet extends Testnet implements EthereumNetwork {
|
|
2345
|
+
name: string;
|
|
2346
|
+
family: CoinFamily;
|
|
2347
|
+
explorerUrl: string;
|
|
2348
|
+
accountExplorerUrl: string;
|
|
2349
|
+
chainId: number;
|
|
2350
|
+
nativeCoinOperationHashPrefix: string;
|
|
2351
|
+
}
|
|
2352
|
+
declare class Canton extends Mainnet implements BaseNetwork {
|
|
2353
|
+
name: string;
|
|
2354
|
+
family: CoinFamily;
|
|
2355
|
+
explorerUrl: string;
|
|
2356
|
+
}
|
|
2357
|
+
declare class CantonTestnet extends Testnet implements BaseNetwork {
|
|
2358
|
+
name: string;
|
|
2359
|
+
family: CoinFamily;
|
|
2360
|
+
explorerUrl: string;
|
|
2361
|
+
}
|
|
2362
|
+
declare class Dogeos extends Mainnet implements EthereumNetwork {
|
|
2363
|
+
name: string;
|
|
2364
|
+
family: CoinFamily;
|
|
2365
|
+
explorerUrl: string;
|
|
2366
|
+
accountExplorerUrl: string;
|
|
2367
|
+
chainId: number;
|
|
2368
|
+
nativeCoinOperationHashPrefix: string;
|
|
2369
|
+
}
|
|
2370
|
+
declare class DogeosTestnet extends Testnet implements EthereumNetwork {
|
|
2371
|
+
name: string;
|
|
2372
|
+
family: CoinFamily;
|
|
2373
|
+
explorerUrl: string;
|
|
2374
|
+
accountExplorerUrl: string;
|
|
2375
|
+
chainId: number;
|
|
2376
|
+
nativeCoinOperationHashPrefix: string;
|
|
2377
|
+
}
|
|
2378
|
+
declare class ArcUSDCTestnet extends Testnet implements EthereumNetwork {
|
|
2379
|
+
name: string;
|
|
2380
|
+
family: CoinFamily;
|
|
2381
|
+
explorerUrl: string;
|
|
2382
|
+
accountExplorerUrl: string;
|
|
2383
|
+
chainId: number;
|
|
2384
|
+
nativeCoinOperationHashPrefix: string;
|
|
2385
|
+
}
|
|
2386
|
+
declare class ArcUSDC extends Mainnet implements EthereumNetwork {
|
|
2387
|
+
name: string;
|
|
2388
|
+
family: CoinFamily;
|
|
2389
|
+
explorerUrl: string;
|
|
2390
|
+
accountExplorerUrl: string;
|
|
2391
|
+
chainId: number;
|
|
2392
|
+
nativeCoinOperationHashPrefix: string;
|
|
2393
|
+
}
|
|
2394
|
+
declare class Tempo extends Mainnet implements EthereumNetwork {
|
|
2395
|
+
name: string;
|
|
2396
|
+
family: CoinFamily;
|
|
2397
|
+
explorerUrl: string;
|
|
2398
|
+
accountExplorerUrl: string;
|
|
2399
|
+
chainId: number;
|
|
765
2400
|
nativeCoinOperationHashPrefix: string;
|
|
766
2401
|
tokenOperationHashPrefix: string;
|
|
767
2402
|
}
|
|
768
|
-
declare class
|
|
2403
|
+
declare class TempoTestnet extends Testnet implements EthereumNetwork {
|
|
769
2404
|
name: string;
|
|
770
2405
|
family: CoinFamily;
|
|
771
2406
|
explorerUrl: string;
|
|
@@ -774,7 +2409,16 @@ declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
|
774
2409
|
nativeCoinOperationHashPrefix: string;
|
|
775
2410
|
tokenOperationHashPrefix: string;
|
|
776
2411
|
}
|
|
777
|
-
declare class
|
|
2412
|
+
declare class Boba extends Mainnet implements EthereumNetwork {
|
|
2413
|
+
name: string;
|
|
2414
|
+
family: CoinFamily;
|
|
2415
|
+
explorerUrl: string;
|
|
2416
|
+
accountExplorerUrl: string;
|
|
2417
|
+
chainId: number;
|
|
2418
|
+
nativeCoinOperationHashPrefix: string;
|
|
2419
|
+
tokenOperationHashPrefix: string;
|
|
2420
|
+
}
|
|
2421
|
+
declare class BobaTestnet extends Testnet implements EthereumNetwork {
|
|
778
2422
|
name: string;
|
|
779
2423
|
family: CoinFamily;
|
|
780
2424
|
explorerUrl: string;
|
|
@@ -783,27 +2427,100 @@ declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
|
783
2427
|
nativeCoinOperationHashPrefix: string;
|
|
784
2428
|
tokenOperationHashPrefix: string;
|
|
785
2429
|
}
|
|
2430
|
+
/**
|
|
2431
|
+
* Constructor options for {@link DynamicNetwork}.
|
|
2432
|
+
* Accepts string-typed `type` and `family` so AMS JSON can be passed directly.
|
|
2433
|
+
* Fields mirror BaseNetwork + AccountNetwork + EthereumNetwork.
|
|
2434
|
+
*/
|
|
2435
|
+
export interface DynamicNetworkOptions {
|
|
2436
|
+
name: string;
|
|
2437
|
+
type: string;
|
|
2438
|
+
family: string;
|
|
2439
|
+
explorerUrl?: string;
|
|
2440
|
+
accountExplorerUrl?: string;
|
|
2441
|
+
blockExplorerUrl?: string;
|
|
2442
|
+
chainId?: number;
|
|
2443
|
+
batcherContractAddress?: string;
|
|
2444
|
+
forwarderFactoryAddress?: string;
|
|
2445
|
+
forwarderImplementationAddress?: string;
|
|
2446
|
+
walletFactoryAddress?: string;
|
|
2447
|
+
walletImplementationAddress?: string;
|
|
2448
|
+
walletV2FactoryAddress?: string;
|
|
2449
|
+
walletV2ImplementationAddress?: string;
|
|
2450
|
+
walletV4FactoryAddress?: string;
|
|
2451
|
+
walletV4ImplementationAddress?: string;
|
|
2452
|
+
walletV2ForwarderFactoryAddress?: string;
|
|
2453
|
+
walletV2ForwarderImplementationAddress?: string;
|
|
2454
|
+
walletV4ForwarderFactoryAddress?: string;
|
|
2455
|
+
walletV4ForwarderImplementationAddress?: string;
|
|
2456
|
+
nativeCoinOperationHashPrefix?: string;
|
|
2457
|
+
tokenOperationHashPrefix?: string;
|
|
2458
|
+
}
|
|
2459
|
+
/**
|
|
2460
|
+
* Concrete network class for AMS-discovered chains not yet registered in local statics.
|
|
2461
|
+
* Accepts string-typed type/family and casts to enums internally (safe since both are string enums).
|
|
2462
|
+
* Currently covers BaseNetwork + AccountNetwork + EthereumNetwork fields.
|
|
2463
|
+
*/
|
|
2464
|
+
export declare class DynamicNetwork extends BaseNetwork {
|
|
2465
|
+
readonly name: string;
|
|
2466
|
+
readonly type: NetworkType;
|
|
2467
|
+
readonly family: CoinFamily;
|
|
2468
|
+
readonly explorerUrl: string | undefined;
|
|
2469
|
+
readonly accountExplorerUrl?: string;
|
|
2470
|
+
readonly blockExplorerUrl?: string;
|
|
2471
|
+
readonly chainId?: number;
|
|
2472
|
+
readonly batcherContractAddress?: string;
|
|
2473
|
+
readonly forwarderFactoryAddress?: string;
|
|
2474
|
+
readonly forwarderImplementationAddress?: string;
|
|
2475
|
+
readonly walletFactoryAddress?: string;
|
|
2476
|
+
readonly walletImplementationAddress?: string;
|
|
2477
|
+
readonly walletV2FactoryAddress?: string;
|
|
2478
|
+
readonly walletV2ImplementationAddress?: string;
|
|
2479
|
+
readonly walletV4FactoryAddress?: string;
|
|
2480
|
+
readonly walletV4ImplementationAddress?: string;
|
|
2481
|
+
readonly walletV2ForwarderFactoryAddress?: string;
|
|
2482
|
+
readonly walletV2ForwarderImplementationAddress?: string;
|
|
2483
|
+
readonly walletV4ForwarderFactoryAddress?: string;
|
|
2484
|
+
readonly walletV4ForwarderImplementationAddress?: string;
|
|
2485
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
2486
|
+
readonly tokenOperationHashPrefix?: string;
|
|
2487
|
+
constructor(options: DynamicNetworkOptions);
|
|
2488
|
+
}
|
|
786
2489
|
export declare const Networks: {
|
|
787
2490
|
main: {
|
|
2491
|
+
abstracteth: Readonly<AbstractEth>;
|
|
788
2492
|
ada: Readonly<Ada>;
|
|
789
2493
|
algorand: Readonly<Algorand>;
|
|
2494
|
+
apechain: Readonly<ApeChain>;
|
|
2495
|
+
apt: Readonly<Apt>;
|
|
790
2496
|
arbitrum: Readonly<Arbitrum>;
|
|
2497
|
+
arcusdc: Readonly<ArcUSDC>;
|
|
2498
|
+
asi: Readonly<Asi>;
|
|
791
2499
|
atom: Readonly<Atom>;
|
|
792
2500
|
avalancheC: Readonly<AvalancheC>;
|
|
793
2501
|
avalancheP: Readonly<AvalancheP>;
|
|
2502
|
+
baby: Readonly<Baby>;
|
|
2503
|
+
basechain: Readonly<BaseChain>;
|
|
794
2504
|
bitcoin: Readonly<Bitcoin>;
|
|
795
2505
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
796
2506
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
797
2507
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
798
|
-
bera: Readonly<
|
|
2508
|
+
bera: Readonly<Berachain>;
|
|
799
2509
|
bld: Readonly<Bld>;
|
|
800
2510
|
bsc: Readonly<BinanceSmartChain>;
|
|
2511
|
+
canton: Readonly<Canton>;
|
|
801
2512
|
casper: Readonly<Casper>;
|
|
802
2513
|
celo: Readonly<Celo>;
|
|
2514
|
+
chiliz: Readonly<Chiliz>;
|
|
2515
|
+
codexeth: Readonly<CodexEth>;
|
|
2516
|
+
coredao: Readonly<Coredao>;
|
|
803
2517
|
coreum: Readonly<Coreum>;
|
|
2518
|
+
cronos: Readonly<Cronos>;
|
|
804
2519
|
dash: Readonly<Dash>;
|
|
805
2520
|
dogecoin: Readonly<Dogecoin>;
|
|
806
|
-
|
|
2521
|
+
dogeos: Readonly<Dogeos>;
|
|
2522
|
+
dot: Readonly<PolkadotAssetHub>;
|
|
2523
|
+
dydx: Readonly<Dydx>;
|
|
807
2524
|
eCash: Readonly<ECash>;
|
|
808
2525
|
eos: Readonly<Eos>;
|
|
809
2526
|
ethereum: Readonly<Ethereum>;
|
|
@@ -811,86 +2528,255 @@ export declare const Networks: {
|
|
|
811
2528
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
812
2529
|
ethereumW: Readonly<EthereumW>;
|
|
813
2530
|
fiat: Readonly<Fiat>;
|
|
2531
|
+
fetchai: Readonly<FetchAi>;
|
|
2532
|
+
flow: Readonly<Flow>;
|
|
2533
|
+
flr: Readonly<Flare>;
|
|
2534
|
+
flrP: Readonly<FlareP>;
|
|
2535
|
+
fluenteth: Readonly<FluentETH>;
|
|
2536
|
+
h: Readonly<HumanityProtocol>;
|
|
814
2537
|
hash: Readonly<Hash>;
|
|
2538
|
+
hoodeth: Readonly<Hoodeth>;
|
|
815
2539
|
hedera: Readonly<Hedera>;
|
|
2540
|
+
hederaEVM: Readonly<HederaEVM>;
|
|
2541
|
+
hemieth: Readonly<HemiEth>;
|
|
2542
|
+
inketh: Readonly<InkEth>;
|
|
2543
|
+
hppeth: Readonly<Hppeth>;
|
|
2544
|
+
prividiumeth: Readonly<PrividiumETH>;
|
|
2545
|
+
icp: Readonly<Icp>;
|
|
2546
|
+
ip: Readonly<IP>;
|
|
2547
|
+
initia: Readonly<Initia>;
|
|
2548
|
+
iota: Readonly<Iota>;
|
|
816
2549
|
injective: Readonly<Injective>;
|
|
2550
|
+
irys: Readonly<Irys>;
|
|
817
2551
|
islm: Readonly<Islm>;
|
|
818
|
-
|
|
2552
|
+
jovayeth: Readonly<JovayETH>;
|
|
2553
|
+
kaia: Readonly<Kaia>;
|
|
2554
|
+
kaspa: Readonly<KaspaMainnet>;
|
|
2555
|
+
katanaeth: Readonly<KatanaEth>;
|
|
2556
|
+
kavacosmos: Readonly<KavaCosmos>;
|
|
2557
|
+
kavaevm: Readonly<KavaEVM>;
|
|
2558
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
819
2559
|
litecoin: Readonly<Litecoin>;
|
|
2560
|
+
megaeth: Readonly<MegaETH>;
|
|
2561
|
+
mon: Readonly<Monad>;
|
|
2562
|
+
mantle: Readonly<Mantle>;
|
|
2563
|
+
mantra: Readonly<Mantra>;
|
|
2564
|
+
plume: Readonly<Plume>;
|
|
820
2565
|
polygon: Readonly<Polygon>;
|
|
2566
|
+
polyx: Readonly<Polymesh>;
|
|
2567
|
+
phrs: Readonly<Pharos>;
|
|
2568
|
+
ctc: Readonly<Creditcoin>;
|
|
2569
|
+
hypeevm: Readonly<HypeEVM>;
|
|
2570
|
+
hyperliquid: Readonly<Hyperliquid>;
|
|
2571
|
+
lineaeth: Readonly<LineaETH>;
|
|
2572
|
+
oas: Readonly<Oas>;
|
|
2573
|
+
og: Readonly<Og>;
|
|
821
2574
|
ofc: Readonly<Ofc>;
|
|
2575
|
+
okbxlayer: Readonly<Xlayer>;
|
|
2576
|
+
opbnb: Readonly<OpBNB>;
|
|
2577
|
+
fantom: Readonly<Fantom>;
|
|
2578
|
+
morph: Readonly<Morph>;
|
|
2579
|
+
morpheth: Readonly<MorphETH>;
|
|
822
2580
|
optimism: Readonly<Optimism>;
|
|
823
2581
|
osmo: Readonly<Osmo>;
|
|
824
2582
|
rbtc: Readonly<Rbtc>;
|
|
2583
|
+
rune: Readonly<Rune>;
|
|
825
2584
|
stellar: Readonly<Stellar>;
|
|
2585
|
+
scrolleth: Readonly<ScrollEth>;
|
|
826
2586
|
sei: Readonly<Sei>;
|
|
2587
|
+
seievm: Readonly<SeiEvm>;
|
|
2588
|
+
sgb: Readonly<Songbird>;
|
|
827
2589
|
sol: Readonly<Sol>;
|
|
2590
|
+
sonic: Readonly<Sonic>;
|
|
2591
|
+
starknet: Readonly<StarknetMainnet>;
|
|
828
2592
|
sui: Readonly<Sui>;
|
|
829
2593
|
near: Readonly<Near>;
|
|
830
2594
|
stx: Readonly<Stx>;
|
|
2595
|
+
somi: Readonly<Somi>;
|
|
2596
|
+
soneium: Readonly<Soneium>;
|
|
831
2597
|
susd: Readonly<SUSD>;
|
|
2598
|
+
tao: Readonly<Bittensor>;
|
|
2599
|
+
tempo: Readonly<Tempo>;
|
|
832
2600
|
tia: Readonly<Tia>;
|
|
833
2601
|
ton: Readonly<Ton>;
|
|
834
2602
|
trx: Readonly<Trx>;
|
|
2603
|
+
usdt0: Readonly<Usdt0>;
|
|
2604
|
+
vet: Readonly<Vet>;
|
|
2605
|
+
wemix: Readonly<Wemix>;
|
|
2606
|
+
world: Readonly<World>;
|
|
2607
|
+
xdc: Readonly<Xdc>;
|
|
2608
|
+
xpl: Readonly<Plasma>;
|
|
835
2609
|
xrp: Readonly<Xrp>;
|
|
836
2610
|
xtz: Readonly<Xtz>;
|
|
2611
|
+
xtzevm: Readonly<XtzEvm>;
|
|
837
2612
|
zCash: Readonly<ZCash>;
|
|
838
2613
|
zeta: Readonly<Zeta>;
|
|
2614
|
+
zkSync: Readonly<ZkSync>;
|
|
2615
|
+
zkSyncEra: Readonly<ZkSyncEra>;
|
|
2616
|
+
unieth: Readonly<Unieth>;
|
|
2617
|
+
boba: Readonly<Boba>;
|
|
839
2618
|
};
|
|
840
2619
|
test: {
|
|
2620
|
+
abstracteth: Readonly<AbstractEthTestnet>;
|
|
841
2621
|
ada: Readonly<AdaTestnet>;
|
|
842
2622
|
algorand: Readonly<AlgorandTestnet>;
|
|
2623
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
2624
|
+
apt: Readonly<AptTestnet>;
|
|
843
2625
|
arbitrum: Readonly<ArbitrumTestnet>;
|
|
2626
|
+
arcusdc: Readonly<ArcUSDCTestnet>;
|
|
2627
|
+
asi: Readonly<AsiTestnet>;
|
|
844
2628
|
atom: Readonly<AtomTestnet>;
|
|
845
2629
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
846
2630
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
2631
|
+
baby: Readonly<BabyTestnet>;
|
|
2632
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
847
2633
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
2634
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
2635
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
2636
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
848
2637
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
849
2638
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
850
2639
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
851
|
-
bera: Readonly<
|
|
2640
|
+
bera: Readonly<BerachainTestnet>;
|
|
852
2641
|
bld: Readonly<BldTestnet>;
|
|
853
2642
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
2643
|
+
canton: Readonly<CantonTestnet>;
|
|
854
2644
|
casper: Readonly<CasperTestnet>;
|
|
855
2645
|
celo: Readonly<CeloTestnet>;
|
|
2646
|
+
chiliz: Readonly<ChilizTestnet>;
|
|
2647
|
+
codexeth: Readonly<CodexEthTestnet>;
|
|
2648
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
2649
|
+
cronos: Readonly<CronosTestnet>;
|
|
856
2650
|
dash: Readonly<DashTestnet>;
|
|
857
2651
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
858
|
-
|
|
2652
|
+
dogeos: Readonly<DogeosTestnet>;
|
|
2653
|
+
dot: Readonly<WestendAssetHub>;
|
|
2654
|
+
dydx: Readonly<DydxTestnet>;
|
|
859
2655
|
eCash: Readonly<ECashTestnet>;
|
|
860
2656
|
eos: Readonly<EosTestnet>;
|
|
861
2657
|
fiat: Readonly<FiatTestnet>;
|
|
2658
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
2659
|
+
flow: Readonly<FlowTestnet>;
|
|
2660
|
+
flr: Readonly<FlareTestnet>;
|
|
2661
|
+
flrP: Readonly<FlarePTestnet>;
|
|
2662
|
+
fluenteth: Readonly<FluentETHTestnet>;
|
|
2663
|
+
h: Readonly<HumanityProtocolTestnet>;
|
|
2664
|
+
mon: Readonly<MonadTestnet>;
|
|
2665
|
+
megaeth: Readonly<MegaETHTestnet>;
|
|
862
2666
|
pyrmont: Readonly<Pyrmont>;
|
|
2667
|
+
plume: Readonly<PlumeTestnet>;
|
|
863
2668
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
864
2669
|
hash: Readonly<HashTestnet>;
|
|
865
2670
|
hedera: Readonly<HederaTestnet>;
|
|
2671
|
+
hoodeth: Readonly<HoodethTestnet>;
|
|
2672
|
+
hppeth: Readonly<HppethTestnet>;
|
|
2673
|
+
prividiumeth: Readonly<PrividiumETHTestnet>;
|
|
2674
|
+
hederaEVM: Readonly<HederaEVMTestnet>;
|
|
2675
|
+
hemieth: Readonly<HemiEthTestnet>;
|
|
2676
|
+
inketh: Readonly<InkEthTestnet>;
|
|
2677
|
+
icp: Readonly<IcpTestnet>;
|
|
2678
|
+
ip: Readonly<IPTestnet>;
|
|
2679
|
+
initia: Readonly<InitiaTestnet>;
|
|
866
2680
|
injective: Readonly<InjectiveTestnet>;
|
|
2681
|
+
iota: Readonly<IotaTestnet>;
|
|
2682
|
+
irys: Readonly<IrysTestnet>;
|
|
867
2683
|
islm: Readonly<IslmTestnet>;
|
|
868
|
-
|
|
2684
|
+
jovayeth: Readonly<JovayETHTestnet>;
|
|
2685
|
+
kaspa: Readonly<KaspaTestnet>;
|
|
2686
|
+
katanaeth: Readonly<KatanaEthTestnet>;
|
|
2687
|
+
kavacosmos: Readonly<KavaCosmosTestnet>;
|
|
2688
|
+
kavaevm: Readonly<KavaEVMTestnet>;
|
|
869
2689
|
kovan: Readonly<Kovan>;
|
|
870
2690
|
goerli: Readonly<Goerli>;
|
|
871
2691
|
holesky: Readonly<Holesky>;
|
|
2692
|
+
hoodi: Readonly<Hoodi>;
|
|
2693
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
872
2694
|
litecoin: Readonly<LitecoinTestnet>;
|
|
2695
|
+
mantle: Readonly<MantleTestnet>;
|
|
2696
|
+
mantra: Readonly<MantraTestnet>;
|
|
873
2697
|
polygon: Readonly<PolygonTestnet>;
|
|
2698
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
2699
|
+
phrs: Readonly<PharosTestnet>;
|
|
2700
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
2701
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
2702
|
+
hyperliquid: Readonly<HyperliquidTestnet>;
|
|
2703
|
+
lineaeth: Readonly<LineaETHTestnet>;
|
|
2704
|
+
oas: Readonly<OasTestnet>;
|
|
2705
|
+
og: Readonly<OgTestnet>;
|
|
874
2706
|
ofc: Readonly<OfcTestnet>;
|
|
2707
|
+
okbxlayer: Readonly<XlayerTestnet>;
|
|
2708
|
+
opbnb: Readonly<OpBNBTestnet>;
|
|
2709
|
+
fantom: Readonly<FantomTestnet>;
|
|
2710
|
+
morph: Readonly<MorphTestnet>;
|
|
2711
|
+
morpheth: Readonly<MorphETHTestnet>;
|
|
875
2712
|
optimism: Readonly<OptimismTestnet>;
|
|
876
2713
|
osmo: Readonly<OsmoTestnet>;
|
|
877
2714
|
rbtc: Readonly<RbtcTestnet>;
|
|
2715
|
+
rune: Readonly<RuneTestNet>;
|
|
2716
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
878
2717
|
stellar: Readonly<StellarTestnet>;
|
|
879
2718
|
sei: Readonly<SeiTestnet>;
|
|
2719
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
880
2720
|
sol: Readonly<SolTestnet>;
|
|
2721
|
+
starknet: Readonly<StarknetTestnet>;
|
|
881
2722
|
sui: Readonly<SuiTestnet>;
|
|
882
2723
|
near: Readonly<NearTestnet>;
|
|
883
2724
|
stx: Readonly<StxTestnet>;
|
|
2725
|
+
stt: Readonly<SomniaTestnet>;
|
|
2726
|
+
scrolleth: Readonly<ScrollEthTestnet>;
|
|
2727
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
2728
|
+
sonic: Readonly<SonicTestnet>;
|
|
2729
|
+
kaia: Readonly<KaiaTestnet>;
|
|
884
2730
|
susd: Readonly<SUSDTestnet>;
|
|
885
2731
|
coreum: Readonly<CoreumTestnet>;
|
|
2732
|
+
tao: Readonly<BittensorTestnet>;
|
|
2733
|
+
tempo: Readonly<TempoTestnet>;
|
|
886
2734
|
tia: Readonly<TiaTestnet>;
|
|
887
2735
|
ton: Readonly<TonTestnet>;
|
|
888
2736
|
trx: Readonly<TrxTestnet>;
|
|
2737
|
+
usdt0: Readonly<Usdt0Testnet>;
|
|
2738
|
+
vet: Readonly<VetTestnet>;
|
|
2739
|
+
wemix: Readonly<WemixTestnet>;
|
|
2740
|
+
world: Readonly<WorldTestnet>;
|
|
2741
|
+
xdc: Readonly<XdcTestnet>;
|
|
2742
|
+
xpl: Readonly<PlasmaTestnet>;
|
|
889
2743
|
xrp: Readonly<XrpTestnet>;
|
|
890
2744
|
xtz: Readonly<XtzTestnet>;
|
|
2745
|
+
xtzevm: Readonly<XtzEvmTestnet>;
|
|
891
2746
|
zCash: Readonly<ZCashTestnet>;
|
|
892
2747
|
zeta: Readonly<ZetaTestnet>;
|
|
2748
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
2749
|
+
zkSyncEra: Readonly<ZkSyncEraTestnet>;
|
|
2750
|
+
unieth: Readonly<UniethTestnet>;
|
|
2751
|
+
boba: Readonly<BobaTestnet>;
|
|
893
2752
|
};
|
|
894
2753
|
};
|
|
2754
|
+
/**
|
|
2755
|
+
* Look up a registered network by its display name (e.g. "Ethereum", "Bitcoin").
|
|
2756
|
+
* Returns undefined for names not registered in local statics.
|
|
2757
|
+
*/
|
|
2758
|
+
export declare function getNetworkByName(name: string): BaseNetwork | undefined;
|
|
2759
|
+
export declare function getNetworksMap(): Map<string, BaseNetwork>;
|
|
2760
|
+
/**
|
|
2761
|
+
* Dynamically register a new network in the lookup map.
|
|
2762
|
+
* Throws if a network with the same name is already registered.
|
|
2763
|
+
*/
|
|
2764
|
+
export declare function registerNetwork(network: BaseNetwork): void;
|
|
2765
|
+
/**
|
|
2766
|
+
* Look up a network by its display name or JSON representation.
|
|
2767
|
+
*
|
|
2768
|
+
* Resolution order:
|
|
2769
|
+
* 1. If `network` is a JSON string representing a DynamicNetworkOptions object
|
|
2770
|
+
* (must have `name`, `type`, and `family` fields), construct and
|
|
2771
|
+
* return a new DynamicNetwork instance.
|
|
2772
|
+
* 2. Local statics cache via getNetworkByName().
|
|
2773
|
+
*
|
|
2774
|
+
* @param network - A network display name (e.g. "bitcoin") or a JSON-encoded
|
|
2775
|
+
* DynamicNetworkOptions object.
|
|
2776
|
+
* @returns The matching BaseNetwork (or DynamicNetwork) instance.
|
|
2777
|
+
* @throws {Error} If the network is not found in local statics and the input
|
|
2778
|
+
* is not a valid DynamicNetworkOptions JSON string.
|
|
2779
|
+
*/
|
|
2780
|
+
export declare function getNetwork(network: string): BaseNetwork;
|
|
895
2781
|
export {};
|
|
896
2782
|
//# sourceMappingURL=networks.d.ts.map
|