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