@bitgo-beta/statics 15.1.1-beta.140 → 15.1.1-beta.1401
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 +897 -73
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1407 -149
- 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 +948 -0
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +8 -3
- package/dist/src/base.d.ts +1939 -48
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +2020 -58
- 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 +109 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +690 -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 +17 -0
- package/dist/src/coins/avaxTokens.d.ts +2 -0
- package/dist/src/coins/avaxTokens.d.ts.map +1 -0
- package/dist/src/coins/avaxTokens.js +125 -0
- package/dist/src/coins/botOfcTokens.d.ts +2 -0
- package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
- package/dist/src/coins/botOfcTokens.js +5 -0
- package/dist/src/coins/botTokens.d.ts +3 -0
- package/dist/src/coins/botTokens.d.ts.map +1 -0
- package/dist/src/coins/botTokens.js +43 -0
- package/dist/src/coins/bscTokens.d.ts +2 -0
- package/dist/src/coins/bscTokens.d.ts.map +1 -0
- package/dist/src/coins/bscTokens.js +187 -0
- package/dist/src/coins/cosmosTokens.d.ts +2 -0
- package/dist/src/coins/cosmosTokens.d.ts.map +1 -0
- package/dist/src/coins/cosmosTokens.js +12 -0
- package/dist/src/coins/erc20Coins.d.ts +2 -0
- package/dist/src/coins/erc20Coins.d.ts.map +1 -0
- package/dist/src/coins/erc20Coins.js +1939 -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 +13 -0
- package/dist/src/coins/nep141Tokens.d.ts +2 -0
- package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
- package/dist/src/coins/nep141Tokens.js +16 -0
- package/dist/src/coins/ofcCoins.d.ts +2 -0
- package/dist/src/coins/ofcCoins.d.ts.map +1 -0
- package/dist/src/coins/ofcCoins.js +788 -0
- package/dist/src/coins/ofcErc20Coins.d.ts +3 -0
- package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
- package/dist/src/coins/ofcErc20Coins.js +1594 -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 +158 -0
- package/dist/src/coins/polyxTokens.d.ts +2 -0
- package/dist/src/coins/polyxTokens.d.ts.map +1 -0
- package/dist/src/coins/polyxTokens.js +21 -0
- package/dist/src/coins/sip10Tokens.d.ts +2 -0
- package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
- package/dist/src/coins/sip10Tokens.js +25 -0
- package/dist/src/coins/solTokens.d.ts +3 -0
- package/dist/src/coins/solTokens.d.ts.map +1 -0
- package/dist/src/coins/solTokens.js +422 -0
- package/dist/src/coins/vetTokens.d.ts +2 -0
- package/dist/src/coins/vetTokens.d.ts.map +1 -0
- package/dist/src/coins/vetTokens.js +11 -0
- package/dist/src/coins.d.ts +11 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +334 -1628
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/constants.d.ts.map +1 -1
- package/dist/src/constants.js +3 -2
- package/dist/src/flrp.d.ts +40 -0
- package/dist/src/flrp.d.ts.map +1 -0
- package/dist/src/flrp.js +65 -0
- package/dist/src/index.d.ts +3 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +26 -3
- package/dist/src/lightning.d.ts +43 -0
- package/dist/src/lightning.d.ts.map +1 -0
- package/dist/src/lightning.js +60 -0
- package/dist/src/map.d.ts +10 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +146 -17
- package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
- package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
- package/dist/src/networkFeatureMapForTokens.js +31 -0
- package/dist/src/networks.d.ts +1192 -15
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1507 -89
- package/dist/src/ofc.d.ts +597 -3
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +1419 -28
- package/dist/src/tokenConfig.d.ts +268 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +998 -244
- 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 -838
package/dist/src/networks.d.ts
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
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
|
+
vm?: string;
|
|
17
|
+
txFee?: string;
|
|
18
|
+
maxImportFee?: string;
|
|
19
|
+
createSubnetTx?: string;
|
|
20
|
+
createChainTx?: string;
|
|
21
|
+
creationTxFee?: string;
|
|
22
|
+
minConsumption?: string;
|
|
23
|
+
maxConsumption?: string;
|
|
24
|
+
maxSupply?: string;
|
|
25
|
+
minStake?: string;
|
|
26
|
+
minStakeDuration?: string;
|
|
27
|
+
maxStakeDuration?: string;
|
|
28
|
+
minDelegationStake?: string;
|
|
29
|
+
minDelegationFee?: string;
|
|
30
|
+
}
|
|
1
31
|
import { CoinFamily } from './base';
|
|
2
32
|
export declare enum NetworkType {
|
|
3
33
|
MAINNET = "mainnet",
|
|
@@ -11,6 +41,25 @@ export declare abstract class BaseNetwork {
|
|
|
11
41
|
}
|
|
12
42
|
export interface UtxoNetwork extends BaseNetwork {
|
|
13
43
|
utxolibName: string;
|
|
44
|
+
paygoAddressAttestationPubkey?: string;
|
|
45
|
+
}
|
|
46
|
+
export interface LightningNetwork extends UtxoNetwork {
|
|
47
|
+
/**
|
|
48
|
+
* The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
49
|
+
* between the user's extended private key and the Lightning service. This key facilitates secure communication
|
|
50
|
+
* by enabling the creation of a shared secret for encryption and decryption of data.
|
|
51
|
+
*/
|
|
52
|
+
lightningServicePubKey: string;
|
|
53
|
+
/**
|
|
54
|
+
* The public key of the middleware service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
55
|
+
* between the user's extended private key and the middleware service.
|
|
56
|
+
*/
|
|
57
|
+
middlewarePubKey: string;
|
|
58
|
+
/**
|
|
59
|
+
* The public key of the TAT service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
60
|
+
* between the user's extended private key and the TAT service.
|
|
61
|
+
*/
|
|
62
|
+
tatPubKey: string;
|
|
14
63
|
}
|
|
15
64
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
65
|
utxolibName: string;
|
|
@@ -40,15 +89,25 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
89
|
readonly minDelegationFee: string;
|
|
41
90
|
readonly avaxAssetID: string;
|
|
42
91
|
readonly txFee: string;
|
|
92
|
+
readonly maxImportFee: string;
|
|
43
93
|
}
|
|
44
94
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
95
|
readonly accountExplorerUrl?: string;
|
|
46
96
|
readonly blockExplorerUrl?: string;
|
|
47
97
|
}
|
|
98
|
+
export interface CosmosNetwork extends AccountNetwork {
|
|
99
|
+
readonly addressPrefix: string;
|
|
100
|
+
readonly validatorPrefix: string;
|
|
101
|
+
readonly denom: string;
|
|
102
|
+
readonly gasAmount: string;
|
|
103
|
+
readonly gasLimit: number;
|
|
104
|
+
readonly validDenoms: string[];
|
|
105
|
+
}
|
|
48
106
|
/**
|
|
49
107
|
* Specification name type of the chain. Used in setting up the registry
|
|
50
108
|
*/
|
|
51
|
-
export
|
|
109
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'westmint';
|
|
110
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet' | 'polymesh_mainnet';
|
|
52
111
|
export interface DotNetwork extends AccountNetwork {
|
|
53
112
|
readonly specName: PolkadotSpecNameType;
|
|
54
113
|
readonly genesisHash: string;
|
|
@@ -61,6 +120,10 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
120
|
readonly batcherContractAddress?: string;
|
|
62
121
|
readonly forwarderFactoryAddress?: string;
|
|
63
122
|
readonly forwarderImplementationAddress?: string;
|
|
123
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
124
|
+
readonly tokenOperationHashPrefix?: string;
|
|
125
|
+
readonly walletV4ForwarderFactoryAddress?: string;
|
|
126
|
+
readonly walletV4ForwarderImplementationAddress?: string;
|
|
64
127
|
}
|
|
65
128
|
export interface TronNetwork extends AccountNetwork {
|
|
66
129
|
maxFeeLimit: string;
|
|
@@ -110,12 +173,45 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
173
|
poolDeposit: number;
|
|
111
174
|
stakeKeyDeposit: number;
|
|
112
175
|
}
|
|
176
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
177
|
+
name: string;
|
|
178
|
+
family: CoinFamily;
|
|
179
|
+
explorerUrl: string;
|
|
180
|
+
accountExplorerUrl: string;
|
|
181
|
+
blockExplorerUrl: string;
|
|
182
|
+
}
|
|
183
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
184
|
+
name: string;
|
|
185
|
+
family: CoinFamily;
|
|
186
|
+
explorerUrl: string;
|
|
187
|
+
accountExplorerUrl: string;
|
|
188
|
+
blockExplorerUrl: string;
|
|
189
|
+
}
|
|
190
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
191
|
+
name: string;
|
|
192
|
+
family: CoinFamily;
|
|
193
|
+
explorerUrl: string;
|
|
194
|
+
accountExplorerUrl: string;
|
|
195
|
+
}
|
|
196
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
197
|
+
name: string;
|
|
198
|
+
family: CoinFamily;
|
|
199
|
+
explorerUrl: string;
|
|
200
|
+
accountExplorerUrl: string;
|
|
201
|
+
}
|
|
113
202
|
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
114
203
|
name: string;
|
|
115
204
|
family: CoinFamily;
|
|
116
205
|
explorerUrl: string;
|
|
117
206
|
accountExplorerUrl: string;
|
|
118
207
|
chainId: number;
|
|
208
|
+
nativeCoinOperationHashPrefix: string;
|
|
209
|
+
tokenOperationHashPrefix: string;
|
|
210
|
+
forwarderFactoryAddress: string;
|
|
211
|
+
forwarderImplementationAddress: string;
|
|
212
|
+
walletFactoryAddress: string;
|
|
213
|
+
walletImplementationAddress: string;
|
|
214
|
+
batcherContractAddress: string;
|
|
119
215
|
}
|
|
120
216
|
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
121
217
|
name: string;
|
|
@@ -123,6 +219,13 @@ declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
|
123
219
|
explorerUrl: string;
|
|
124
220
|
accountExplorerUrl: string;
|
|
125
221
|
chainId: number;
|
|
222
|
+
nativeCoinOperationHashPrefix: string;
|
|
223
|
+
tokenOperationHashPrefix: string;
|
|
224
|
+
forwarderFactoryAddress: string;
|
|
225
|
+
forwarderImplementationAddress: string;
|
|
226
|
+
walletFactoryAddress: string;
|
|
227
|
+
walletImplementationAddress: string;
|
|
228
|
+
batcherContractAddress: string;
|
|
126
229
|
}
|
|
127
230
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
128
231
|
name: string;
|
|
@@ -151,6 +254,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
151
254
|
alias: string;
|
|
152
255
|
vm: string;
|
|
153
256
|
txFee: string;
|
|
257
|
+
maxImportFee: string;
|
|
154
258
|
createSubnetTx: string;
|
|
155
259
|
createChainTx: string;
|
|
156
260
|
creationTxFee: string;
|
|
@@ -176,6 +280,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
176
280
|
hrp: string;
|
|
177
281
|
vm: string;
|
|
178
282
|
txFee: string;
|
|
283
|
+
maxImportFee: string;
|
|
179
284
|
createSubnetTx: string;
|
|
180
285
|
createChainTx: string;
|
|
181
286
|
creationTxFee: string;
|
|
@@ -194,6 +299,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
194
299
|
explorerUrl: string;
|
|
195
300
|
accountExplorerUrl: string;
|
|
196
301
|
chainId: number;
|
|
302
|
+
nativeCoinOperationHashPrefix: string;
|
|
303
|
+
tokenOperationHashPrefix: string;
|
|
304
|
+
batcherContractAddress: string;
|
|
197
305
|
}
|
|
198
306
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
199
307
|
name: string;
|
|
@@ -201,6 +309,27 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
201
309
|
explorerUrl: string;
|
|
202
310
|
accountExplorerUrl: string;
|
|
203
311
|
chainId: number;
|
|
312
|
+
nativeCoinOperationHashPrefix: string;
|
|
313
|
+
tokenOperationHashPrefix: string;
|
|
314
|
+
batcherContractAddress: string;
|
|
315
|
+
}
|
|
316
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
317
|
+
name: string;
|
|
318
|
+
family: CoinFamily;
|
|
319
|
+
utxolibName: string;
|
|
320
|
+
explorerUrl: string;
|
|
321
|
+
lightningServicePubKey: string;
|
|
322
|
+
middlewarePubKey: string;
|
|
323
|
+
tatPubKey: string;
|
|
324
|
+
}
|
|
325
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
326
|
+
name: string;
|
|
327
|
+
family: CoinFamily;
|
|
328
|
+
utxolibName: string;
|
|
329
|
+
explorerUrl: string;
|
|
330
|
+
lightningServicePubKey: string;
|
|
331
|
+
middlewarePubKey: string;
|
|
332
|
+
tatPubKey: string;
|
|
204
333
|
}
|
|
205
334
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
206
335
|
name: string;
|
|
@@ -213,6 +342,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
213
342
|
family: CoinFamily;
|
|
214
343
|
utxolibName: string;
|
|
215
344
|
explorerUrl: string;
|
|
345
|
+
paygoAddressAttestationPubkey: string;
|
|
346
|
+
}
|
|
347
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
348
|
+
name: string;
|
|
349
|
+
family: CoinFamily;
|
|
350
|
+
utxolibName: string;
|
|
351
|
+
explorerUrl: string;
|
|
352
|
+
}
|
|
353
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
354
|
+
name: string;
|
|
355
|
+
family: CoinFamily;
|
|
356
|
+
utxolibName: string;
|
|
357
|
+
explorerUrl: string;
|
|
358
|
+
}
|
|
359
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
360
|
+
name: string;
|
|
361
|
+
family: CoinFamily;
|
|
362
|
+
utxolibName: string;
|
|
363
|
+
explorerUrl: string;
|
|
216
364
|
}
|
|
217
365
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
218
366
|
name: string;
|
|
@@ -286,7 +434,7 @@ declare class ECashTestnet extends Testnet implements UtxoNetwork {
|
|
|
286
434
|
utxolibName: string;
|
|
287
435
|
explorerUrl: undefined;
|
|
288
436
|
}
|
|
289
|
-
declare class
|
|
437
|
+
declare class PolkadotAssetHub extends Mainnet implements DotNetwork {
|
|
290
438
|
name: string;
|
|
291
439
|
family: CoinFamily;
|
|
292
440
|
explorerUrl: string;
|
|
@@ -296,7 +444,7 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
296
444
|
chainName: string;
|
|
297
445
|
txVersion: number;
|
|
298
446
|
}
|
|
299
|
-
declare class
|
|
447
|
+
declare class WestendAssetHub extends Testnet implements DotNetwork {
|
|
300
448
|
name: string;
|
|
301
449
|
family: CoinFamily;
|
|
302
450
|
explorerUrl: string;
|
|
@@ -312,6 +460,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
312
460
|
explorerUrl: string;
|
|
313
461
|
accountExplorerUrl: string;
|
|
314
462
|
chainId: number;
|
|
463
|
+
nativeCoinOperationHashPrefix: string;
|
|
464
|
+
tokenOperationHashPrefix: string;
|
|
315
465
|
}
|
|
316
466
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
317
467
|
name: string;
|
|
@@ -319,6 +469,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
319
469
|
explorerUrl: string;
|
|
320
470
|
accountExplorerUrl: string;
|
|
321
471
|
chainId: number;
|
|
472
|
+
nativeCoinOperationHashPrefix: string;
|
|
473
|
+
tokenOperationHashPrefix: string;
|
|
322
474
|
}
|
|
323
475
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
324
476
|
name: string;
|
|
@@ -342,6 +494,10 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
342
494
|
batcherContractAddress: string;
|
|
343
495
|
forwarderFactoryAddress: string;
|
|
344
496
|
forwarderImplementationAddress: string;
|
|
497
|
+
nativeCoinOperationHashPrefix: string;
|
|
498
|
+
tokenOperationHashPrefix: string;
|
|
499
|
+
walletV4ForwarderFactoryAddress: string;
|
|
500
|
+
walletV4ForwarderImplementationAddress: string;
|
|
345
501
|
}
|
|
346
502
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
347
503
|
name: string;
|
|
@@ -358,6 +514,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
358
514
|
batcherContractAddress: string;
|
|
359
515
|
forwarderFactoryAddress: string;
|
|
360
516
|
forwarderImplementationAddress: string;
|
|
517
|
+
nativeCoinOperationHashPrefix: string;
|
|
518
|
+
tokenOperationHashPrefix: string;
|
|
361
519
|
}
|
|
362
520
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
363
521
|
name: string;
|
|
@@ -374,6 +532,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
374
532
|
batcherContractAddress: string;
|
|
375
533
|
forwarderFactoryAddress: string;
|
|
376
534
|
forwarderImplementationAddress: string;
|
|
535
|
+
nativeCoinOperationHashPrefix: string;
|
|
536
|
+
tokenOperationHashPrefix: string;
|
|
377
537
|
}
|
|
378
538
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
379
539
|
name: string;
|
|
@@ -385,6 +545,38 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
385
545
|
batcherContractAddress: string;
|
|
386
546
|
forwarderFactoryAddress: string;
|
|
387
547
|
forwarderImplementationAddress: string;
|
|
548
|
+
nativeCoinOperationHashPrefix: string;
|
|
549
|
+
tokenOperationHashPrefix: string;
|
|
550
|
+
}
|
|
551
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
552
|
+
name: string;
|
|
553
|
+
family: CoinFamily;
|
|
554
|
+
explorerUrl: string;
|
|
555
|
+
accountExplorerUrl: string;
|
|
556
|
+
blockExplorerUrl: string;
|
|
557
|
+
chainId: number;
|
|
558
|
+
batcherContractAddress: string;
|
|
559
|
+
forwarderFactoryAddress: string;
|
|
560
|
+
forwarderImplementationAddress: string;
|
|
561
|
+
nativeCoinOperationHashPrefix: string;
|
|
562
|
+
tokenOperationHashPrefix: string;
|
|
563
|
+
walletV4ForwarderFactoryAddress: string;
|
|
564
|
+
walletV4ForwarderImplementationAddress: string;
|
|
565
|
+
}
|
|
566
|
+
declare class Hoodi extends Testnet implements EthereumNetwork {
|
|
567
|
+
name: string;
|
|
568
|
+
family: CoinFamily;
|
|
569
|
+
explorerUrl: string;
|
|
570
|
+
accountExplorerUrl: string;
|
|
571
|
+
blockExplorerUrl: string;
|
|
572
|
+
chainId: number;
|
|
573
|
+
batcherContractAddress: string;
|
|
574
|
+
forwarderFactoryAddress: string;
|
|
575
|
+
forwarderImplementationAddress: string;
|
|
576
|
+
nativeCoinOperationHashPrefix: string;
|
|
577
|
+
tokenOperationHashPrefix: string;
|
|
578
|
+
walletV4ForwarderFactoryAddress: string;
|
|
579
|
+
walletV4ForwarderImplementationAddress: string;
|
|
388
580
|
}
|
|
389
581
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
390
582
|
name: string;
|
|
@@ -392,6 +584,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
392
584
|
explorerUrl: string;
|
|
393
585
|
accountExplorerUrl: string;
|
|
394
586
|
chainId: number;
|
|
587
|
+
nativeCoinOperationHashPrefix: string;
|
|
588
|
+
tokenOperationHashPrefix: string;
|
|
395
589
|
}
|
|
396
590
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
397
591
|
name: string;
|
|
@@ -399,6 +593,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
399
593
|
explorerUrl: string;
|
|
400
594
|
accountExplorerUrl: string;
|
|
401
595
|
chainId: number;
|
|
596
|
+
nativeCoinOperationHashPrefix: string;
|
|
597
|
+
tokenOperationHashPrefix: string;
|
|
402
598
|
}
|
|
403
599
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
404
600
|
name: string;
|
|
@@ -448,6 +644,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
448
644
|
explorerUrl: string;
|
|
449
645
|
accountExplorerUrl: string;
|
|
450
646
|
chainId: number;
|
|
647
|
+
nativeCoinOperationHashPrefix: string;
|
|
648
|
+
tokenOperationHashPrefix: string;
|
|
451
649
|
}
|
|
452
650
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
453
651
|
name: string;
|
|
@@ -455,6 +653,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
455
653
|
explorerUrl: string;
|
|
456
654
|
accountExplorerUrl: string;
|
|
457
655
|
chainId: number;
|
|
656
|
+
nativeCoinOperationHashPrefix: string;
|
|
657
|
+
tokenOperationHashPrefix: string;
|
|
458
658
|
}
|
|
459
659
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
460
660
|
name: string;
|
|
@@ -586,25 +786,97 @@ declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
|
586
786
|
family: CoinFamily;
|
|
587
787
|
explorerUrl: string;
|
|
588
788
|
}
|
|
589
|
-
declare class
|
|
789
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
590
790
|
name: string;
|
|
591
791
|
family: CoinFamily;
|
|
592
792
|
explorerUrl: string;
|
|
593
793
|
}
|
|
594
|
-
declare class
|
|
794
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
595
795
|
name: string;
|
|
596
796
|
family: CoinFamily;
|
|
597
797
|
explorerUrl: string;
|
|
598
798
|
}
|
|
599
|
-
declare class
|
|
799
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
600
800
|
name: string;
|
|
601
801
|
family: CoinFamily;
|
|
602
|
-
explorerUrl:
|
|
802
|
+
explorerUrl: string;
|
|
603
803
|
}
|
|
604
|
-
declare class
|
|
804
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
605
805
|
name: string;
|
|
606
806
|
family: CoinFamily;
|
|
607
|
-
explorerUrl:
|
|
807
|
+
explorerUrl: string;
|
|
808
|
+
}
|
|
809
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
810
|
+
name: string;
|
|
811
|
+
family: CoinFamily;
|
|
812
|
+
explorerUrl: string;
|
|
813
|
+
}
|
|
814
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
815
|
+
name: string;
|
|
816
|
+
family: CoinFamily;
|
|
817
|
+
explorerUrl: string;
|
|
818
|
+
}
|
|
819
|
+
declare class Mantra extends Mainnet implements CosmosNetwork {
|
|
820
|
+
name: string;
|
|
821
|
+
family: CoinFamily;
|
|
822
|
+
explorerUrl: string;
|
|
823
|
+
addressPrefix: string;
|
|
824
|
+
validatorPrefix: string;
|
|
825
|
+
denom: string;
|
|
826
|
+
gasAmount: string;
|
|
827
|
+
gasLimit: number;
|
|
828
|
+
validDenoms: string[];
|
|
829
|
+
}
|
|
830
|
+
declare class MantraTestnet extends Testnet implements CosmosNetwork {
|
|
831
|
+
name: string;
|
|
832
|
+
family: CoinFamily;
|
|
833
|
+
explorerUrl: string;
|
|
834
|
+
addressPrefix: string;
|
|
835
|
+
validatorPrefix: string;
|
|
836
|
+
denom: string;
|
|
837
|
+
gasAmount: string;
|
|
838
|
+
gasLimit: number;
|
|
839
|
+
validDenoms: string[];
|
|
840
|
+
}
|
|
841
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
842
|
+
name: string;
|
|
843
|
+
family: CoinFamily;
|
|
844
|
+
explorerUrl: string;
|
|
845
|
+
}
|
|
846
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
847
|
+
name: string;
|
|
848
|
+
family: CoinFamily;
|
|
849
|
+
explorerUrl: string;
|
|
850
|
+
}
|
|
851
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
852
|
+
name: string;
|
|
853
|
+
family: CoinFamily;
|
|
854
|
+
explorerUrl: string;
|
|
855
|
+
}
|
|
856
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
857
|
+
name: string;
|
|
858
|
+
family: CoinFamily;
|
|
859
|
+
explorerUrl: string;
|
|
860
|
+
}
|
|
861
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
862
|
+
name: string;
|
|
863
|
+
family: CoinFamily;
|
|
864
|
+
explorerUrl: string;
|
|
865
|
+
}
|
|
866
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
867
|
+
name: string;
|
|
868
|
+
family: CoinFamily;
|
|
869
|
+
explorerUrl: string;
|
|
870
|
+
}
|
|
871
|
+
declare class Asi extends Mainnet implements AccountNetwork {
|
|
872
|
+
name: string;
|
|
873
|
+
family: CoinFamily;
|
|
874
|
+
explorerUrl: string;
|
|
875
|
+
}
|
|
876
|
+
declare class AsiTestnet extends Testnet implements AccountNetwork {
|
|
877
|
+
name: string;
|
|
878
|
+
family: CoinFamily;
|
|
879
|
+
explorerUrl: string;
|
|
608
880
|
}
|
|
609
881
|
declare class Islm extends Mainnet implements AccountNetwork {
|
|
610
882
|
name: string;
|
|
@@ -650,9 +922,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
650
922
|
family: CoinFamily;
|
|
651
923
|
explorerUrl: undefined;
|
|
652
924
|
}
|
|
925
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
926
|
+
name: string;
|
|
927
|
+
family: CoinFamily;
|
|
928
|
+
explorerUrl: string;
|
|
929
|
+
}
|
|
930
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
931
|
+
name: string;
|
|
932
|
+
family: CoinFamily;
|
|
933
|
+
explorerUrl: string;
|
|
934
|
+
specName: SubstrateSpecNameType;
|
|
935
|
+
genesisHash: string;
|
|
936
|
+
specVersion: number;
|
|
937
|
+
chainName: string;
|
|
938
|
+
txVersion: number;
|
|
939
|
+
}
|
|
653
940
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
654
941
|
name: string;
|
|
655
942
|
family: CoinFamily;
|
|
943
|
+
accountExplorerUrl: string;
|
|
656
944
|
explorerUrl: string;
|
|
657
945
|
maxFeeLimit: string;
|
|
658
946
|
contractCallFeeLimit: string;
|
|
@@ -660,6 +948,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
660
948
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
661
949
|
name: string;
|
|
662
950
|
family: CoinFamily;
|
|
951
|
+
accountExplorerUrl: string;
|
|
663
952
|
explorerUrl: string;
|
|
664
953
|
maxFeeLimit: string;
|
|
665
954
|
contractCallFeeLimit: string;
|
|
@@ -678,11 +967,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
678
967
|
name: string;
|
|
679
968
|
family: CoinFamily;
|
|
680
969
|
explorerUrl: string;
|
|
970
|
+
accountExplorerUrl: string;
|
|
681
971
|
}
|
|
682
972
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
683
973
|
name: string;
|
|
684
974
|
family: CoinFamily;
|
|
685
975
|
explorerUrl: string;
|
|
976
|
+
accountExplorerUrl: string;
|
|
686
977
|
}
|
|
687
978
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
688
979
|
name: string;
|
|
@@ -721,6 +1012,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
721
1012
|
walletFactoryAddress: string;
|
|
722
1013
|
walletImplementationAddress: string;
|
|
723
1014
|
batcherContractAddress: string;
|
|
1015
|
+
nativeCoinOperationHashPrefix: string;
|
|
1016
|
+
tokenOperationHashPrefix: string;
|
|
724
1017
|
}
|
|
725
1018
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
726
1019
|
name: string;
|
|
@@ -733,6 +1026,8 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
733
1026
|
walletFactoryAddress: string;
|
|
734
1027
|
walletImplementationAddress: string;
|
|
735
1028
|
batcherContractAddress: string;
|
|
1029
|
+
nativeCoinOperationHashPrefix: string;
|
|
1030
|
+
tokenOperationHashPrefix: string;
|
|
736
1031
|
}
|
|
737
1032
|
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
738
1033
|
name: string;
|
|
@@ -740,6 +1035,13 @@ declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
|
740
1035
|
explorerUrl: string;
|
|
741
1036
|
accountExplorerUrl: string;
|
|
742
1037
|
chainId: number;
|
|
1038
|
+
nativeCoinOperationHashPrefix: string;
|
|
1039
|
+
tokenOperationHashPrefix: string;
|
|
1040
|
+
forwarderFactoryAddress: string;
|
|
1041
|
+
forwarderImplementationAddress: string;
|
|
1042
|
+
walletFactoryAddress: string;
|
|
1043
|
+
walletImplementationAddress: string;
|
|
1044
|
+
batcherContractAddress: string;
|
|
743
1045
|
}
|
|
744
1046
|
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
745
1047
|
name: string;
|
|
@@ -747,28 +1049,812 @@ declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
|
747
1049
|
explorerUrl: string;
|
|
748
1050
|
accountExplorerUrl: string;
|
|
749
1051
|
chainId: number;
|
|
1052
|
+
nativeCoinOperationHashPrefix: string;
|
|
1053
|
+
tokenOperationHashPrefix: string;
|
|
1054
|
+
forwarderFactoryAddress: string;
|
|
1055
|
+
forwarderImplementationAddress: string;
|
|
1056
|
+
walletFactoryAddress: string;
|
|
1057
|
+
walletImplementationAddress: string;
|
|
1058
|
+
batcherContractAddress: string;
|
|
1059
|
+
}
|
|
1060
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
1061
|
+
name: string;
|
|
1062
|
+
family: CoinFamily;
|
|
1063
|
+
explorerUrl: string;
|
|
1064
|
+
accountExplorerUrl: string;
|
|
1065
|
+
chainId: number;
|
|
1066
|
+
nativeCoinOperationHashPrefix: string;
|
|
1067
|
+
tokenOperationHashPrefix: string;
|
|
1068
|
+
}
|
|
1069
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
1070
|
+
name: string;
|
|
1071
|
+
family: CoinFamily;
|
|
1072
|
+
explorerUrl: string;
|
|
1073
|
+
accountExplorerUrl: string;
|
|
1074
|
+
chainId: number;
|
|
1075
|
+
nativeCoinOperationHashPrefix: string;
|
|
1076
|
+
tokenOperationHashPrefix: string;
|
|
1077
|
+
forwarderFactoryAddress: string;
|
|
1078
|
+
forwarderImplementationAddress: string;
|
|
1079
|
+
walletFactoryAddress: string;
|
|
1080
|
+
walletImplementationAddress: string;
|
|
1081
|
+
}
|
|
1082
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
1083
|
+
name: string;
|
|
1084
|
+
family: CoinFamily;
|
|
1085
|
+
explorerUrl: string;
|
|
1086
|
+
accountExplorerUrl: string;
|
|
1087
|
+
chainId: number;
|
|
1088
|
+
nativeCoinOperationHashPrefix: string;
|
|
1089
|
+
tokenOperationHashPrefix: string;
|
|
1090
|
+
batcherContractAddress: string;
|
|
1091
|
+
forwarderFactoryAddress: string;
|
|
1092
|
+
forwarderImplementationAddress: string;
|
|
1093
|
+
}
|
|
1094
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1095
|
+
name: string;
|
|
1096
|
+
family: CoinFamily;
|
|
1097
|
+
explorerUrl: string;
|
|
1098
|
+
accountExplorerUrl: string;
|
|
1099
|
+
chainId: number;
|
|
1100
|
+
nativeCoinOperationHashPrefix: string;
|
|
1101
|
+
tokenOperationHashPrefix: string;
|
|
1102
|
+
batcherContractAddress: string;
|
|
1103
|
+
forwarderFactoryAddress: string;
|
|
1104
|
+
forwarderImplementationAddress: string;
|
|
1105
|
+
}
|
|
1106
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1107
|
+
name: string;
|
|
1108
|
+
family: CoinFamily;
|
|
1109
|
+
explorerUrl: string;
|
|
1110
|
+
accountExplorerUrl: string;
|
|
1111
|
+
chainId: number;
|
|
1112
|
+
nativeCoinOperationHashPrefix: string;
|
|
1113
|
+
batcherContractAddress: string;
|
|
1114
|
+
forwarderFactoryAddress: string;
|
|
1115
|
+
forwarderImplementationAddress: string;
|
|
1116
|
+
}
|
|
1117
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1118
|
+
name: string;
|
|
1119
|
+
family: CoinFamily;
|
|
1120
|
+
explorerUrl: string;
|
|
1121
|
+
accountExplorerUrl: string;
|
|
1122
|
+
chainId: number;
|
|
1123
|
+
nativeCoinOperationHashPrefix: string;
|
|
1124
|
+
batcherContractAddress: string;
|
|
1125
|
+
forwarderFactoryAddress: string;
|
|
1126
|
+
forwarderImplementationAddress: string;
|
|
1127
|
+
}
|
|
1128
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1129
|
+
name: string;
|
|
1130
|
+
family: CoinFamily;
|
|
1131
|
+
explorerUrl: string;
|
|
1132
|
+
accountExplorerUrl: string;
|
|
1133
|
+
chainId: number;
|
|
1134
|
+
nativeCoinOperationHashPrefix: string;
|
|
1135
|
+
batcherContractAddress: string;
|
|
1136
|
+
forwarderFactoryAddress: string;
|
|
1137
|
+
forwarderImplementationAddress: string;
|
|
1138
|
+
}
|
|
1139
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1140
|
+
name: string;
|
|
1141
|
+
family: CoinFamily;
|
|
1142
|
+
explorerUrl: string;
|
|
1143
|
+
accountExplorerUrl: string;
|
|
1144
|
+
chainId: number;
|
|
1145
|
+
nativeCoinOperationHashPrefix: string;
|
|
1146
|
+
batcherContractAddress: string;
|
|
1147
|
+
forwarderFactoryAddress: string;
|
|
1148
|
+
forwarderImplementationAddress: string;
|
|
1149
|
+
}
|
|
1150
|
+
declare class IP extends Mainnet implements EthereumNetwork {
|
|
1151
|
+
name: string;
|
|
1152
|
+
family: CoinFamily;
|
|
1153
|
+
explorerUrl: string;
|
|
1154
|
+
accountExplorerUrl: string;
|
|
1155
|
+
chainId: number;
|
|
1156
|
+
nativeCoinOperationHashPrefix: string;
|
|
1157
|
+
}
|
|
1158
|
+
declare class IPTestnet extends Testnet implements EthereumNetwork {
|
|
1159
|
+
name: string;
|
|
1160
|
+
family: CoinFamily;
|
|
1161
|
+
explorerUrl: string;
|
|
1162
|
+
accountExplorerUrl: string;
|
|
1163
|
+
chainId: number;
|
|
1164
|
+
nativeCoinOperationHashPrefix: string;
|
|
1165
|
+
}
|
|
1166
|
+
declare class ApeChain extends Mainnet implements EthereumNetwork {
|
|
1167
|
+
name: string;
|
|
1168
|
+
family: CoinFamily;
|
|
1169
|
+
explorerUrl: string;
|
|
1170
|
+
accountExplorerUrl: string;
|
|
1171
|
+
chainId: number;
|
|
1172
|
+
nativeCoinOperationHashPrefix: string;
|
|
1173
|
+
}
|
|
1174
|
+
declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1175
|
+
name: string;
|
|
1176
|
+
family: CoinFamily;
|
|
1177
|
+
explorerUrl: string;
|
|
1178
|
+
accountExplorerUrl: string;
|
|
1179
|
+
chainId: number;
|
|
1180
|
+
nativeCoinOperationHashPrefix: string;
|
|
1181
|
+
forwarderFactoryAddress: string;
|
|
1182
|
+
forwarderImplementationAddress: string;
|
|
1183
|
+
walletFactoryAddress: string;
|
|
1184
|
+
walletImplementationAddress: string;
|
|
1185
|
+
batcherContractAddress: string;
|
|
1186
|
+
}
|
|
1187
|
+
declare class Pharos extends Mainnet implements EthereumNetwork {
|
|
1188
|
+
name: string;
|
|
1189
|
+
family: CoinFamily;
|
|
1190
|
+
explorerUrl: string;
|
|
1191
|
+
accountExplorerUrl: string;
|
|
1192
|
+
chainId: number;
|
|
1193
|
+
nativeCoinOperationHashPrefix: string;
|
|
1194
|
+
}
|
|
1195
|
+
declare class PharosTestnet extends Testnet implements EthereumNetwork {
|
|
1196
|
+
name: string;
|
|
1197
|
+
family: CoinFamily;
|
|
1198
|
+
explorerUrl: string;
|
|
1199
|
+
accountExplorerUrl: string;
|
|
1200
|
+
chainId: number;
|
|
1201
|
+
nativeCoinOperationHashPrefix: string;
|
|
1202
|
+
forwarderFactoryAddress: string;
|
|
1203
|
+
forwarderImplementationAddress: string;
|
|
1204
|
+
walletFactoryAddress: string;
|
|
1205
|
+
walletImplementationAddress: string;
|
|
1206
|
+
batcherContractAddress: string;
|
|
1207
|
+
}
|
|
1208
|
+
declare class Creditcoin extends Mainnet implements EthereumNetwork {
|
|
1209
|
+
name: string;
|
|
1210
|
+
family: CoinFamily;
|
|
1211
|
+
explorerUrl: string;
|
|
1212
|
+
accountExplorerUrl: string;
|
|
1213
|
+
chainId: number;
|
|
1214
|
+
nativeCoinOperationHashPrefix: string;
|
|
1215
|
+
forwarderFactoryAddress: string;
|
|
1216
|
+
forwarderImplementationAddress: string;
|
|
1217
|
+
walletFactoryAddress: string;
|
|
1218
|
+
walletImplementationAddress: string;
|
|
1219
|
+
batcherContractAddress: string;
|
|
1220
|
+
}
|
|
1221
|
+
declare class Plasma extends Mainnet implements EthereumNetwork {
|
|
1222
|
+
name: string;
|
|
1223
|
+
family: CoinFamily;
|
|
1224
|
+
explorerUrl: string;
|
|
1225
|
+
accountExplorerUrl: string;
|
|
1226
|
+
chainId: number;
|
|
1227
|
+
nativeCoinOperationHashPrefix: string;
|
|
1228
|
+
}
|
|
1229
|
+
declare class PlasmaTestnet extends Testnet implements EthereumNetwork {
|
|
1230
|
+
name: string;
|
|
1231
|
+
family: CoinFamily;
|
|
1232
|
+
explorerUrl: string;
|
|
1233
|
+
accountExplorerUrl: string;
|
|
1234
|
+
chainId: number;
|
|
1235
|
+
nativeCoinOperationHashPrefix: string;
|
|
1236
|
+
}
|
|
1237
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1238
|
+
name: string;
|
|
1239
|
+
family: CoinFamily;
|
|
1240
|
+
explorerUrl: string;
|
|
1241
|
+
accountExplorerUrl: string;
|
|
1242
|
+
chainId: number;
|
|
1243
|
+
nativeCoinOperationHashPrefix: string;
|
|
1244
|
+
forwarderFactoryAddress: string;
|
|
1245
|
+
forwarderImplementationAddress: string;
|
|
1246
|
+
walletFactoryAddress: string;
|
|
1247
|
+
walletImplementationAddress: string;
|
|
1248
|
+
batcherContractAddress: string;
|
|
1249
|
+
}
|
|
1250
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1251
|
+
name: string;
|
|
1252
|
+
family: CoinFamily;
|
|
1253
|
+
explorerUrl: string;
|
|
1254
|
+
accountExplorerUrl: string;
|
|
1255
|
+
chainId: number;
|
|
1256
|
+
nativeCoinOperationHashPrefix: string;
|
|
1257
|
+
forwarderFactoryAddress: string;
|
|
1258
|
+
forwarderImplementationAddress: string;
|
|
1259
|
+
walletFactoryAddress: string;
|
|
1260
|
+
walletImplementationAddress: string;
|
|
1261
|
+
batcherContractAddress: string;
|
|
1262
|
+
}
|
|
1263
|
+
declare class KavaEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1264
|
+
name: string;
|
|
1265
|
+
family: CoinFamily;
|
|
1266
|
+
explorerUrl: string;
|
|
1267
|
+
accountExplorerUrl: string;
|
|
1268
|
+
chainId: number;
|
|
1269
|
+
nativeCoinOperationHashPrefix: string;
|
|
1270
|
+
}
|
|
1271
|
+
declare class KavaEVM extends Mainnet implements EthereumNetwork {
|
|
1272
|
+
name: string;
|
|
1273
|
+
family: CoinFamily;
|
|
1274
|
+
explorerUrl: string;
|
|
1275
|
+
accountExplorerUrl: string;
|
|
1276
|
+
chainId: number;
|
|
1277
|
+
nativeCoinOperationHashPrefix: string;
|
|
1278
|
+
}
|
|
1279
|
+
declare class LineaETH extends Mainnet implements EthereumNetwork {
|
|
1280
|
+
name: string;
|
|
1281
|
+
family: CoinFamily;
|
|
1282
|
+
explorerUrl: string;
|
|
1283
|
+
accountExplorerUrl: string;
|
|
1284
|
+
chainId: number;
|
|
1285
|
+
nativeCoinOperationHashPrefix: string;
|
|
1286
|
+
}
|
|
1287
|
+
declare class LineaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1288
|
+
name: string;
|
|
1289
|
+
family: CoinFamily;
|
|
1290
|
+
explorerUrl: string;
|
|
1291
|
+
accountExplorerUrl: string;
|
|
1292
|
+
chainId: number;
|
|
1293
|
+
nativeCoinOperationHashPrefix: string;
|
|
1294
|
+
}
|
|
1295
|
+
declare class FluentETH extends Mainnet implements EthereumNetwork {
|
|
1296
|
+
name: string;
|
|
1297
|
+
family: CoinFamily;
|
|
1298
|
+
explorerUrl: string;
|
|
1299
|
+
accountExplorerUrl: string;
|
|
1300
|
+
chainId: number;
|
|
1301
|
+
nativeCoinOperationHashPrefix: string;
|
|
1302
|
+
}
|
|
1303
|
+
declare class FluentETHTestnet extends Testnet implements EthereumNetwork {
|
|
1304
|
+
name: string;
|
|
1305
|
+
family: CoinFamily;
|
|
1306
|
+
explorerUrl: string;
|
|
1307
|
+
accountExplorerUrl: string;
|
|
1308
|
+
chainId: number;
|
|
1309
|
+
nativeCoinOperationHashPrefix: string;
|
|
1310
|
+
}
|
|
1311
|
+
declare class Mantle extends Mainnet implements EthereumNetwork {
|
|
1312
|
+
name: string;
|
|
1313
|
+
family: CoinFamily;
|
|
1314
|
+
explorerUrl: string;
|
|
1315
|
+
accountExplorerUrl: string;
|
|
1316
|
+
chainId: number;
|
|
1317
|
+
nativeCoinOperationHashPrefix: string;
|
|
1318
|
+
}
|
|
1319
|
+
declare class MantleTestnet extends Testnet implements EthereumNetwork {
|
|
1320
|
+
name: string;
|
|
1321
|
+
family: CoinFamily;
|
|
1322
|
+
explorerUrl: string;
|
|
1323
|
+
accountExplorerUrl: string;
|
|
1324
|
+
chainId: number;
|
|
1325
|
+
nativeCoinOperationHashPrefix: string;
|
|
1326
|
+
}
|
|
1327
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1328
|
+
name: string;
|
|
1329
|
+
family: CoinFamily;
|
|
1330
|
+
explorerUrl: string;
|
|
1331
|
+
accountExplorerUrl: string;
|
|
1332
|
+
chainId: number;
|
|
1333
|
+
nativeCoinOperationHashPrefix: string;
|
|
1334
|
+
forwarderFactoryAddress: string;
|
|
1335
|
+
forwarderImplementationAddress: string;
|
|
1336
|
+
walletFactoryAddress: string;
|
|
1337
|
+
walletImplementationAddress: string;
|
|
1338
|
+
batcherContractAddress: string;
|
|
1339
|
+
}
|
|
1340
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1341
|
+
name: string;
|
|
1342
|
+
family: CoinFamily;
|
|
1343
|
+
explorerUrl: string;
|
|
1344
|
+
accountExplorerUrl: string;
|
|
1345
|
+
chainId: number;
|
|
1346
|
+
nativeCoinOperationHashPrefix: string;
|
|
1347
|
+
}
|
|
1348
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1349
|
+
name: string;
|
|
1350
|
+
family: CoinFamily;
|
|
1351
|
+
explorerUrl: string;
|
|
1352
|
+
accountExplorerUrl: string;
|
|
1353
|
+
chainId: number;
|
|
1354
|
+
nativeCoinOperationHashPrefix: string;
|
|
1355
|
+
walletFactoryAddress: string;
|
|
1356
|
+
batcherContractAddress: string;
|
|
1357
|
+
forwarderFactoryAddress: string;
|
|
1358
|
+
forwarderImplementationAddress: string;
|
|
1359
|
+
walletImplementationAddress: string;
|
|
1360
|
+
}
|
|
1361
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1362
|
+
name: string;
|
|
1363
|
+
family: CoinFamily;
|
|
1364
|
+
explorerUrl: string;
|
|
1365
|
+
accountExplorerUrl: string;
|
|
1366
|
+
chainId: number;
|
|
1367
|
+
nativeCoinOperationHashPrefix: string;
|
|
1368
|
+
}
|
|
1369
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1370
|
+
name: string;
|
|
1371
|
+
family: CoinFamily;
|
|
1372
|
+
explorerUrl: string;
|
|
1373
|
+
accountExplorerUrl: string;
|
|
1374
|
+
chainId: number;
|
|
1375
|
+
nativeCoinOperationHashPrefix: string;
|
|
1376
|
+
walletFactoryAddress: string;
|
|
1377
|
+
batcherContractAddress: string;
|
|
1378
|
+
forwarderFactoryAddress: string;
|
|
1379
|
+
forwarderImplementationAddress: string;
|
|
1380
|
+
walletImplementationAddress: string;
|
|
1381
|
+
}
|
|
1382
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1383
|
+
name: string;
|
|
1384
|
+
family: CoinFamily;
|
|
1385
|
+
explorerUrl: string;
|
|
1386
|
+
accountExplorerUrl: string;
|
|
1387
|
+
chainId: number;
|
|
1388
|
+
nativeCoinOperationHashPrefix: string;
|
|
1389
|
+
}
|
|
1390
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1391
|
+
name: string;
|
|
1392
|
+
family: CoinFamily;
|
|
1393
|
+
explorerUrl: string;
|
|
1394
|
+
accountExplorerUrl: string;
|
|
1395
|
+
chainId: number;
|
|
1396
|
+
nativeCoinOperationHashPrefix: string;
|
|
1397
|
+
walletFactoryAddress: string;
|
|
1398
|
+
batcherContractAddress: string;
|
|
1399
|
+
forwarderFactoryAddress: string;
|
|
1400
|
+
forwarderImplementationAddress: string;
|
|
1401
|
+
walletImplementationAddress: string;
|
|
1402
|
+
}
|
|
1403
|
+
declare class Og extends Mainnet implements EthereumNetwork {
|
|
1404
|
+
name: string;
|
|
1405
|
+
family: CoinFamily;
|
|
1406
|
+
explorerUrl: string;
|
|
1407
|
+
accountExplorerUrl: string;
|
|
1408
|
+
chainId: number;
|
|
1409
|
+
nativeCoinOperationHashPrefix: string;
|
|
1410
|
+
}
|
|
1411
|
+
declare class OgTestnet extends Testnet implements EthereumNetwork {
|
|
1412
|
+
name: string;
|
|
1413
|
+
family: CoinFamily;
|
|
1414
|
+
explorerUrl: string;
|
|
1415
|
+
accountExplorerUrl: string;
|
|
1416
|
+
chainId: number;
|
|
1417
|
+
nativeCoinOperationHashPrefix: string;
|
|
1418
|
+
}
|
|
1419
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1420
|
+
name: string;
|
|
1421
|
+
family: CoinFamily;
|
|
1422
|
+
explorerUrl: string;
|
|
1423
|
+
accountExplorerUrl: string;
|
|
1424
|
+
chainId: number;
|
|
1425
|
+
nativeCoinOperationHashPrefix: string;
|
|
1426
|
+
batcherContractAddress: string;
|
|
1427
|
+
forwarderFactoryAddress: string;
|
|
1428
|
+
forwarderImplementationAddress: string;
|
|
1429
|
+
}
|
|
1430
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1431
|
+
name: string;
|
|
1432
|
+
family: CoinFamily;
|
|
1433
|
+
explorerUrl: string;
|
|
1434
|
+
accountExplorerUrl: string;
|
|
1435
|
+
chainId: number;
|
|
1436
|
+
nativeCoinOperationHashPrefix: string;
|
|
1437
|
+
batcherContractAddress: string;
|
|
1438
|
+
forwarderFactoryAddress: string;
|
|
1439
|
+
forwarderImplementationAddress: string;
|
|
1440
|
+
}
|
|
1441
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1442
|
+
name: string;
|
|
1443
|
+
family: CoinFamily;
|
|
1444
|
+
explorerUrl: string;
|
|
1445
|
+
accountExplorerUrl: string;
|
|
1446
|
+
chainId: number;
|
|
1447
|
+
nativeCoinOperationHashPrefix: string;
|
|
1448
|
+
batcherContractAddress: string;
|
|
1449
|
+
forwarderFactoryAddress: string;
|
|
1450
|
+
forwarderImplementationAddress: string;
|
|
1451
|
+
}
|
|
1452
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1453
|
+
name: string;
|
|
1454
|
+
family: CoinFamily;
|
|
1455
|
+
explorerUrl: string;
|
|
1456
|
+
accountExplorerUrl: string;
|
|
1457
|
+
chainId: number;
|
|
1458
|
+
nativeCoinOperationHashPrefix: string;
|
|
1459
|
+
batcherContractAddress: string;
|
|
1460
|
+
forwarderFactoryAddress: string;
|
|
1461
|
+
forwarderImplementationAddress: string;
|
|
1462
|
+
}
|
|
1463
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1464
|
+
name: string;
|
|
1465
|
+
family: CoinFamily;
|
|
1466
|
+
explorerUrl: string;
|
|
1467
|
+
accountExplorerUrl: string;
|
|
1468
|
+
chainId: number;
|
|
1469
|
+
nativeCoinOperationHashPrefix: string;
|
|
1470
|
+
walletFactoryAddress: string;
|
|
1471
|
+
batcherContractAddress: string;
|
|
1472
|
+
forwarderFactoryAddress: string;
|
|
1473
|
+
forwarderImplementationAddress: string;
|
|
1474
|
+
walletImplementationAddress: string;
|
|
1475
|
+
}
|
|
1476
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1477
|
+
name: string;
|
|
1478
|
+
family: CoinFamily;
|
|
1479
|
+
explorerUrl: string;
|
|
1480
|
+
chainId: number;
|
|
1481
|
+
nativeCoinOperationHashPrefix: string;
|
|
1482
|
+
walletImplementationAddress: string;
|
|
1483
|
+
batcherContractAddress: string;
|
|
1484
|
+
forwarderFactoryAddress: string;
|
|
1485
|
+
forwarderImplementationAddress: string;
|
|
1486
|
+
}
|
|
1487
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1488
|
+
name: string;
|
|
1489
|
+
family: CoinFamily;
|
|
1490
|
+
explorerUrl: string;
|
|
1491
|
+
accountExplorerUrl: string;
|
|
1492
|
+
chainId: number;
|
|
1493
|
+
nativeCoinOperationHashPrefix: string;
|
|
1494
|
+
walletImplementationAddress: string;
|
|
1495
|
+
batcherContractAddress: string;
|
|
1496
|
+
forwarderFactoryAddress: string;
|
|
1497
|
+
forwarderImplementationAddress: string;
|
|
1498
|
+
}
|
|
1499
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1500
|
+
name: string;
|
|
1501
|
+
family: CoinFamily;
|
|
1502
|
+
explorerUrl: string;
|
|
1503
|
+
accountExplorerUrl: string;
|
|
1504
|
+
chainId: number;
|
|
1505
|
+
nativeCoinOperationHashPrefix: string;
|
|
1506
|
+
batcherContractAddress: string;
|
|
1507
|
+
forwarderFactoryAddress: string;
|
|
1508
|
+
forwarderImplementationAddress: string;
|
|
1509
|
+
walletImplementationAddress: string;
|
|
1510
|
+
}
|
|
1511
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1512
|
+
name: string;
|
|
1513
|
+
family: CoinFamily;
|
|
1514
|
+
explorerUrl: string;
|
|
1515
|
+
accountExplorerUrl: string;
|
|
1516
|
+
chainId: number;
|
|
1517
|
+
nativeCoinOperationHashPrefix: string;
|
|
1518
|
+
walletImplementationAddress: string;
|
|
1519
|
+
walletFactoryAddress: string;
|
|
1520
|
+
batcherContractAddress: string;
|
|
1521
|
+
forwarderFactoryAddress: string;
|
|
1522
|
+
forwarderImplementationAddress: string;
|
|
1523
|
+
}
|
|
1524
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1525
|
+
name: string;
|
|
1526
|
+
family: CoinFamily;
|
|
1527
|
+
explorerUrl: string;
|
|
1528
|
+
accountExplorerUrl: string;
|
|
1529
|
+
chainId: number;
|
|
1530
|
+
nativeCoinOperationHashPrefix: string;
|
|
1531
|
+
walletFactoryAddress: string;
|
|
1532
|
+
batcherContractAddress: string;
|
|
1533
|
+
forwarderFactoryAddress: string;
|
|
1534
|
+
forwarderImplementationAddress: string;
|
|
1535
|
+
walletImplementationAddress: string;
|
|
1536
|
+
}
|
|
1537
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1538
|
+
name: string;
|
|
1539
|
+
family: CoinFamily;
|
|
1540
|
+
explorerUrl: string;
|
|
1541
|
+
accountExplorerUrl: string;
|
|
1542
|
+
chainId: number;
|
|
1543
|
+
nativeCoinOperationHashPrefix: string;
|
|
1544
|
+
}
|
|
1545
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1546
|
+
name: string;
|
|
1547
|
+
family: CoinFamily;
|
|
1548
|
+
explorerUrl: string;
|
|
1549
|
+
accountExplorerUrl: string;
|
|
1550
|
+
chainId: number;
|
|
1551
|
+
nativeCoinOperationHashPrefix: string;
|
|
1552
|
+
walletFactoryAddress: string;
|
|
1553
|
+
batcherContractAddress: string;
|
|
1554
|
+
forwarderFactoryAddress: string;
|
|
1555
|
+
forwarderImplementationAddress: string;
|
|
1556
|
+
walletImplementationAddress: string;
|
|
1557
|
+
}
|
|
1558
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1559
|
+
name: string;
|
|
1560
|
+
family: CoinFamily;
|
|
1561
|
+
explorerUrl: string;
|
|
1562
|
+
accountExplorerUrl: string;
|
|
1563
|
+
chainId: number;
|
|
1564
|
+
nativeCoinOperationHashPrefix: string;
|
|
1565
|
+
walletFactoryAddress: string;
|
|
1566
|
+
batcherContractAddress: string;
|
|
1567
|
+
forwarderFactoryAddress: string;
|
|
1568
|
+
forwarderImplementationAddress: string;
|
|
1569
|
+
walletImplementationAddress: string;
|
|
1570
|
+
}
|
|
1571
|
+
declare class Somi extends Mainnet implements EthereumNetwork {
|
|
1572
|
+
name: string;
|
|
1573
|
+
family: CoinFamily;
|
|
1574
|
+
explorerUrl: string;
|
|
1575
|
+
chainId: number;
|
|
1576
|
+
nativeCoinOperationHashPrefix: string;
|
|
1577
|
+
walletImplementationAddress: string;
|
|
1578
|
+
walletFactoryAddress: string;
|
|
1579
|
+
forwarderImplementationAddress: string;
|
|
1580
|
+
forwarderFactoryAddress: string;
|
|
1581
|
+
batcherContractAddress: string;
|
|
1582
|
+
}
|
|
1583
|
+
export declare class FlareP extends Mainnet implements FlareNetwork {
|
|
1584
|
+
name: string;
|
|
1585
|
+
family: CoinFamily;
|
|
1586
|
+
explorerUrl: string;
|
|
1587
|
+
accountExplorerUrl: string;
|
|
1588
|
+
blockchainID: string;
|
|
1589
|
+
cChainBlockchainID: string;
|
|
1590
|
+
networkID: number;
|
|
1591
|
+
hrp: string;
|
|
1592
|
+
alias: string;
|
|
1593
|
+
vm: string;
|
|
1594
|
+
txFee: string;
|
|
1595
|
+
maxImportFee: string;
|
|
1596
|
+
createSubnetTx: string;
|
|
1597
|
+
createChainTx: string;
|
|
1598
|
+
creationTxFee: string;
|
|
1599
|
+
minConsumption: string;
|
|
1600
|
+
maxConsumption: string;
|
|
1601
|
+
maxSupply: string;
|
|
1602
|
+
minStake: string;
|
|
1603
|
+
minStakeDuration: string;
|
|
1604
|
+
maxStakeDuration: string;
|
|
1605
|
+
minDelegationStake: string;
|
|
1606
|
+
minDelegationFee: string;
|
|
1607
|
+
}
|
|
1608
|
+
export declare class FlarePTestnet extends Testnet implements FlareNetwork {
|
|
1609
|
+
name: string;
|
|
1610
|
+
family: CoinFamily;
|
|
1611
|
+
explorerUrl: string;
|
|
1612
|
+
accountExplorerUrl: string;
|
|
1613
|
+
blockchainID: string;
|
|
1614
|
+
cChainBlockchainID: string;
|
|
1615
|
+
networkID: number;
|
|
1616
|
+
hrp: string;
|
|
1617
|
+
alias: string;
|
|
1618
|
+
vm: string;
|
|
1619
|
+
txFee: string;
|
|
1620
|
+
maxImportFee: string;
|
|
1621
|
+
createSubnetTx: string;
|
|
1622
|
+
createChainTx: string;
|
|
1623
|
+
creationTxFee: string;
|
|
1624
|
+
minConsumption: string;
|
|
1625
|
+
maxConsumption: string;
|
|
1626
|
+
maxSupply: string;
|
|
1627
|
+
minStake: string;
|
|
1628
|
+
minStakeDuration: string;
|
|
1629
|
+
maxStakeDuration: string;
|
|
1630
|
+
minDelegationStake: string;
|
|
1631
|
+
minDelegationFee: string;
|
|
1632
|
+
}
|
|
1633
|
+
export declare class Flare extends Mainnet implements FlareNetwork, EthereumNetwork {
|
|
1634
|
+
name: string;
|
|
1635
|
+
family: CoinFamily;
|
|
1636
|
+
explorerUrl: string;
|
|
1637
|
+
accountExplorerUrl: string;
|
|
1638
|
+
chainId: number;
|
|
1639
|
+
nativeCoinOperationHashPrefix: string;
|
|
1640
|
+
walletFactoryAddress: string;
|
|
1641
|
+
walletImplementationAddress: string;
|
|
1642
|
+
batcherContractAddress: string;
|
|
1643
|
+
forwarderFactoryAddress: string;
|
|
1644
|
+
forwarderImplementationAddress: string;
|
|
1645
|
+
}
|
|
1646
|
+
export declare class FlareTestnet extends Testnet implements FlareNetwork, EthereumNetwork {
|
|
1647
|
+
name: string;
|
|
1648
|
+
family: CoinFamily;
|
|
1649
|
+
explorerUrl: string;
|
|
1650
|
+
accountExplorerUrl: string;
|
|
1651
|
+
chainId: number;
|
|
1652
|
+
nativeCoinOperationHashPrefix: string;
|
|
1653
|
+
walletFactoryAddress: string;
|
|
1654
|
+
walletImplementationAddress: string;
|
|
1655
|
+
batcherContractAddress: string;
|
|
1656
|
+
forwarderFactoryAddress: string;
|
|
1657
|
+
forwarderImplementationAddress: string;
|
|
1658
|
+
}
|
|
1659
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1660
|
+
name: string;
|
|
1661
|
+
family: CoinFamily;
|
|
1662
|
+
explorerUrl: string;
|
|
1663
|
+
accountExplorerUrl: string;
|
|
1664
|
+
chainId: number;
|
|
1665
|
+
nativeCoinOperationHashPrefix: string;
|
|
1666
|
+
batcherContractAddress: string;
|
|
1667
|
+
forwarderFactoryAddress: string;
|
|
1668
|
+
forwarderImplementationAddress: string;
|
|
1669
|
+
}
|
|
1670
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1671
|
+
name: string;
|
|
1672
|
+
family: CoinFamily;
|
|
1673
|
+
explorerUrl: string;
|
|
1674
|
+
accountExplorerUrl: string;
|
|
1675
|
+
chainId: number;
|
|
1676
|
+
nativeCoinOperationHashPrefix: string;
|
|
1677
|
+
batcherContractAddress: string;
|
|
1678
|
+
forwarderFactoryAddress: string;
|
|
1679
|
+
forwarderImplementationAddress: string;
|
|
1680
|
+
}
|
|
1681
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1682
|
+
name: string;
|
|
1683
|
+
family: CoinFamily;
|
|
1684
|
+
explorerUrl: string;
|
|
1685
|
+
accountExplorerUrl: string;
|
|
1686
|
+
chainId: number;
|
|
1687
|
+
nativeCoinOperationHashPrefix: string;
|
|
1688
|
+
tokenOperationHashPrefix: string;
|
|
1689
|
+
forwarderFactoryAddress: string;
|
|
1690
|
+
forwarderImplementationAddress: string;
|
|
1691
|
+
walletFactoryAddress: string;
|
|
1692
|
+
walletImplementationAddress: string;
|
|
1693
|
+
}
|
|
1694
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1695
|
+
name: string;
|
|
1696
|
+
family: CoinFamily;
|
|
1697
|
+
explorerUrl: string;
|
|
1698
|
+
accountExplorerUrl: string;
|
|
1699
|
+
chainId: number;
|
|
1700
|
+
nativeCoinOperationHashPrefix: string;
|
|
1701
|
+
tokenOperationHashPrefix: string;
|
|
1702
|
+
forwarderFactoryAddress: string;
|
|
1703
|
+
forwarderImplementationAddress: string;
|
|
1704
|
+
walletFactoryAddress: string;
|
|
1705
|
+
walletImplementationAddress: string;
|
|
1706
|
+
}
|
|
1707
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1708
|
+
name: string;
|
|
1709
|
+
family: CoinFamily;
|
|
1710
|
+
explorerUrl: string;
|
|
1711
|
+
specName: string;
|
|
1712
|
+
genesisHash: string;
|
|
1713
|
+
specVersion: number;
|
|
1714
|
+
chainName: string;
|
|
1715
|
+
txVersion: number;
|
|
1716
|
+
}
|
|
1717
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1718
|
+
name: string;
|
|
1719
|
+
family: CoinFamily;
|
|
1720
|
+
explorerUrl: string;
|
|
1721
|
+
specName: SubstrateSpecNameType;
|
|
1722
|
+
genesisHash: string;
|
|
1723
|
+
specVersion: number;
|
|
1724
|
+
chainName: string;
|
|
1725
|
+
txVersion: number;
|
|
1726
|
+
}
|
|
1727
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1728
|
+
name: string;
|
|
1729
|
+
family: CoinFamily;
|
|
1730
|
+
explorerUrl: string;
|
|
1731
|
+
accountExplorerUrl: string;
|
|
1732
|
+
chainId: number;
|
|
1733
|
+
forwarderFactoryAddress: string;
|
|
1734
|
+
forwarderImplementationAddress: string;
|
|
1735
|
+
}
|
|
1736
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1737
|
+
name: string;
|
|
1738
|
+
family: CoinFamily;
|
|
1739
|
+
explorerUrl: string;
|
|
1740
|
+
accountExplorerUrl: string;
|
|
1741
|
+
chainId: number;
|
|
1742
|
+
forwarderFactoryAddress: string;
|
|
1743
|
+
forwarderImplementationAddress: string;
|
|
1744
|
+
}
|
|
1745
|
+
declare class Iota extends Mainnet implements AccountNetwork {
|
|
1746
|
+
name: string;
|
|
1747
|
+
family: CoinFamily;
|
|
1748
|
+
explorerUrl: string;
|
|
1749
|
+
}
|
|
1750
|
+
declare class IotaTestnet extends Testnet implements AccountNetwork {
|
|
1751
|
+
name: string;
|
|
1752
|
+
family: CoinFamily;
|
|
1753
|
+
explorerUrl: string;
|
|
1754
|
+
}
|
|
1755
|
+
declare class Flow extends Mainnet implements EthereumNetwork {
|
|
1756
|
+
name: string;
|
|
1757
|
+
family: CoinFamily;
|
|
1758
|
+
explorerUrl: string;
|
|
1759
|
+
accountExplorerUrl: string;
|
|
1760
|
+
chainId: number;
|
|
1761
|
+
nativeCoinOperationHashPrefix: string;
|
|
1762
|
+
}
|
|
1763
|
+
declare class FlowTestnet extends Testnet implements EthereumNetwork {
|
|
1764
|
+
name: string;
|
|
1765
|
+
family: CoinFamily;
|
|
1766
|
+
explorerUrl: string;
|
|
1767
|
+
accountExplorerUrl: string;
|
|
1768
|
+
chainId: number;
|
|
1769
|
+
nativeCoinOperationHashPrefix: string;
|
|
1770
|
+
}
|
|
1771
|
+
declare class MegaETH extends Mainnet implements EthereumNetwork {
|
|
1772
|
+
name: string;
|
|
1773
|
+
family: CoinFamily;
|
|
1774
|
+
explorerUrl: string;
|
|
1775
|
+
accountExplorerUrl: string;
|
|
1776
|
+
chainId: number;
|
|
1777
|
+
nativeCoinOperationHashPrefix: string;
|
|
1778
|
+
}
|
|
1779
|
+
declare class MegaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1780
|
+
name: string;
|
|
1781
|
+
family: CoinFamily;
|
|
1782
|
+
explorerUrl: string;
|
|
1783
|
+
accountExplorerUrl: string;
|
|
1784
|
+
chainId: number;
|
|
1785
|
+
nativeCoinOperationHashPrefix: string;
|
|
1786
|
+
}
|
|
1787
|
+
declare class Plume extends Mainnet implements EthereumNetwork {
|
|
1788
|
+
name: string;
|
|
1789
|
+
family: CoinFamily;
|
|
1790
|
+
explorerUrl: string;
|
|
1791
|
+
accountExplorerUrl: string;
|
|
1792
|
+
chainId: number;
|
|
1793
|
+
nativeCoinOperationHashPrefix: string;
|
|
1794
|
+
}
|
|
1795
|
+
declare class HederaEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1796
|
+
name: string;
|
|
1797
|
+
family: CoinFamily;
|
|
1798
|
+
explorerUrl: string;
|
|
1799
|
+
accountExplorerUrl: string;
|
|
1800
|
+
chainId: number;
|
|
1801
|
+
nativeCoinOperationHashPrefix: string;
|
|
1802
|
+
}
|
|
1803
|
+
declare class HederaEVM 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 PlumeTestnet 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 Canton extends Mainnet implements BaseNetwork {
|
|
1820
|
+
name: string;
|
|
1821
|
+
family: CoinFamily;
|
|
1822
|
+
explorerUrl: string;
|
|
1823
|
+
}
|
|
1824
|
+
declare class CantonTestnet extends Testnet implements BaseNetwork {
|
|
1825
|
+
name: string;
|
|
1826
|
+
family: CoinFamily;
|
|
1827
|
+
explorerUrl: string;
|
|
750
1828
|
}
|
|
751
1829
|
export declare const Networks: {
|
|
752
1830
|
main: {
|
|
753
1831
|
ada: Readonly<Ada>;
|
|
754
1832
|
algorand: Readonly<Algorand>;
|
|
1833
|
+
apechain: Readonly<ApeChain>;
|
|
1834
|
+
apt: Readonly<Apt>;
|
|
755
1835
|
arbitrum: Readonly<Arbitrum>;
|
|
1836
|
+
asi: Readonly<Asi>;
|
|
756
1837
|
atom: Readonly<Atom>;
|
|
757
1838
|
avalancheC: Readonly<AvalancheC>;
|
|
758
1839
|
avalancheP: Readonly<AvalancheP>;
|
|
1840
|
+
baby: Readonly<Baby>;
|
|
1841
|
+
basechain: Readonly<BaseChain>;
|
|
759
1842
|
bitcoin: Readonly<Bitcoin>;
|
|
760
1843
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
761
1844
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
762
1845
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
763
|
-
bera: Readonly<
|
|
1846
|
+
bera: Readonly<Berachain>;
|
|
764
1847
|
bld: Readonly<Bld>;
|
|
765
1848
|
bsc: Readonly<BinanceSmartChain>;
|
|
1849
|
+
canton: Readonly<Canton>;
|
|
766
1850
|
casper: Readonly<Casper>;
|
|
767
1851
|
celo: Readonly<Celo>;
|
|
768
|
-
|
|
1852
|
+
coredao: Readonly<Coredao>;
|
|
1853
|
+
coreum: Readonly<Coreum>;
|
|
1854
|
+
cronos: Readonly<Cronos>;
|
|
769
1855
|
dash: Readonly<Dash>;
|
|
770
1856
|
dogecoin: Readonly<Dogecoin>;
|
|
771
|
-
dot: Readonly<
|
|
1857
|
+
dot: Readonly<PolkadotAssetHub>;
|
|
772
1858
|
eCash: Readonly<ECash>;
|
|
773
1859
|
eos: Readonly<Eos>;
|
|
774
1860
|
ethereum: Readonly<Ethereum>;
|
|
@@ -776,84 +1862,175 @@ export declare const Networks: {
|
|
|
776
1862
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
777
1863
|
ethereumW: Readonly<EthereumW>;
|
|
778
1864
|
fiat: Readonly<Fiat>;
|
|
1865
|
+
fetchai: Readonly<FetchAi>;
|
|
1866
|
+
flow: Readonly<Flow>;
|
|
1867
|
+
flr: Readonly<Flare>;
|
|
1868
|
+
flrP: Readonly<FlareP>;
|
|
1869
|
+
fluenteth: Readonly<FluentETH>;
|
|
779
1870
|
hash: Readonly<Hash>;
|
|
780
1871
|
hedera: Readonly<Hedera>;
|
|
1872
|
+
hederaEVM: Readonly<HederaEVM>;
|
|
1873
|
+
icp: Readonly<Icp>;
|
|
1874
|
+
ip: Readonly<IP>;
|
|
1875
|
+
initia: Readonly<Initia>;
|
|
1876
|
+
iota: Readonly<Iota>;
|
|
781
1877
|
injective: Readonly<Injective>;
|
|
1878
|
+
irys: Readonly<Irys>;
|
|
782
1879
|
islm: Readonly<Islm>;
|
|
1880
|
+
kaia: Readonly<Kaia>;
|
|
783
1881
|
kava: Readonly<Kava>;
|
|
1882
|
+
kavaevm: Readonly<KavaEVM>;
|
|
1883
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
784
1884
|
litecoin: Readonly<Litecoin>;
|
|
1885
|
+
megaeth: Readonly<MegaETH>;
|
|
1886
|
+
mon: Readonly<Monad>;
|
|
1887
|
+
mantle: Readonly<Mantle>;
|
|
1888
|
+
mantra: Readonly<Mantra>;
|
|
1889
|
+
plume: Readonly<Plume>;
|
|
785
1890
|
polygon: Readonly<Polygon>;
|
|
1891
|
+
polyx: Readonly<Polymesh>;
|
|
1892
|
+
phrs: Readonly<Pharos>;
|
|
1893
|
+
ctc: Readonly<Creditcoin>;
|
|
1894
|
+
hypeevm: Readonly<HypeEVM>;
|
|
1895
|
+
lineaeth: Readonly<LineaETH>;
|
|
1896
|
+
oas: Readonly<Oas>;
|
|
1897
|
+
og: Readonly<Og>;
|
|
786
1898
|
ofc: Readonly<Ofc>;
|
|
787
1899
|
optimism: Readonly<Optimism>;
|
|
788
1900
|
osmo: Readonly<Osmo>;
|
|
789
1901
|
rbtc: Readonly<Rbtc>;
|
|
1902
|
+
rune: Readonly<Rune>;
|
|
790
1903
|
stellar: Readonly<Stellar>;
|
|
791
1904
|
sei: Readonly<Sei>;
|
|
1905
|
+
seievm: Readonly<SeiEvm>;
|
|
1906
|
+
sgb: Readonly<Songbird>;
|
|
792
1907
|
sol: Readonly<Sol>;
|
|
1908
|
+
sonic: Readonly<Sonic>;
|
|
793
1909
|
sui: Readonly<Sui>;
|
|
794
1910
|
near: Readonly<Near>;
|
|
795
1911
|
stx: Readonly<Stx>;
|
|
1912
|
+
somi: Readonly<Somi>;
|
|
1913
|
+
soneium: Readonly<Soneium>;
|
|
796
1914
|
susd: Readonly<SUSD>;
|
|
1915
|
+
tao: Readonly<Bittensor>;
|
|
797
1916
|
tia: Readonly<Tia>;
|
|
798
1917
|
ton: Readonly<Ton>;
|
|
799
1918
|
trx: Readonly<Trx>;
|
|
1919
|
+
vet: Readonly<Vet>;
|
|
1920
|
+
wemix: Readonly<Wemix>;
|
|
1921
|
+
world: Readonly<World>;
|
|
1922
|
+
xdc: Readonly<Xdc>;
|
|
1923
|
+
xpl: Readonly<Plasma>;
|
|
800
1924
|
xrp: Readonly<Xrp>;
|
|
801
1925
|
xtz: Readonly<Xtz>;
|
|
802
1926
|
zCash: Readonly<ZCash>;
|
|
803
1927
|
zeta: Readonly<Zeta>;
|
|
1928
|
+
zkSync: Readonly<ZkSync>;
|
|
804
1929
|
};
|
|
805
1930
|
test: {
|
|
806
1931
|
ada: Readonly<AdaTestnet>;
|
|
807
1932
|
algorand: Readonly<AlgorandTestnet>;
|
|
1933
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1934
|
+
apt: Readonly<AptTestnet>;
|
|
808
1935
|
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1936
|
+
asi: Readonly<AsiTestnet>;
|
|
809
1937
|
atom: Readonly<AtomTestnet>;
|
|
810
1938
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
811
1939
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1940
|
+
baby: Readonly<BabyTestnet>;
|
|
1941
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
812
1942
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1943
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1944
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1945
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
813
1946
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
814
1947
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
815
1948
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
816
|
-
bera: Readonly<
|
|
1949
|
+
bera: Readonly<BerachainTestnet>;
|
|
817
1950
|
bld: Readonly<BldTestnet>;
|
|
818
1951
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
1952
|
+
canton: Readonly<CantonTestnet>;
|
|
819
1953
|
casper: Readonly<CasperTestnet>;
|
|
1954
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
820
1955
|
celo: Readonly<CeloTestnet>;
|
|
1956
|
+
cronos: Readonly<CronosTestnet>;
|
|
821
1957
|
dash: Readonly<DashTestnet>;
|
|
822
1958
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
823
|
-
dot: Readonly<
|
|
1959
|
+
dot: Readonly<WestendAssetHub>;
|
|
824
1960
|
eCash: Readonly<ECashTestnet>;
|
|
825
1961
|
eos: Readonly<EosTestnet>;
|
|
826
1962
|
fiat: Readonly<FiatTestnet>;
|
|
1963
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1964
|
+
flow: Readonly<FlowTestnet>;
|
|
1965
|
+
flr: Readonly<FlareTestnet>;
|
|
1966
|
+
flrP: Readonly<FlarePTestnet>;
|
|
1967
|
+
fluenteth: Readonly<FluentETHTestnet>;
|
|
1968
|
+
mon: Readonly<MonadTestnet>;
|
|
1969
|
+
megaeth: Readonly<MegaETHTestnet>;
|
|
827
1970
|
pyrmont: Readonly<Pyrmont>;
|
|
1971
|
+
plume: Readonly<PlumeTestnet>;
|
|
828
1972
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
829
1973
|
hash: Readonly<HashTestnet>;
|
|
830
1974
|
hedera: Readonly<HederaTestnet>;
|
|
1975
|
+
hederaEVM: Readonly<HederaEVMTestnet>;
|
|
1976
|
+
icp: Readonly<IcpTestnet>;
|
|
1977
|
+
ip: Readonly<IPTestnet>;
|
|
1978
|
+
initia: Readonly<InitiaTestnet>;
|
|
831
1979
|
injective: Readonly<InjectiveTestnet>;
|
|
1980
|
+
iota: Readonly<IotaTestnet>;
|
|
1981
|
+
irys: Readonly<IrysTestnet>;
|
|
832
1982
|
islm: Readonly<IslmTestnet>;
|
|
833
1983
|
kava: Readonly<KavaTestnet>;
|
|
1984
|
+
kavaevm: Readonly<KavaEVMTestnet>;
|
|
834
1985
|
kovan: Readonly<Kovan>;
|
|
835
1986
|
goerli: Readonly<Goerli>;
|
|
1987
|
+
holesky: Readonly<Holesky>;
|
|
1988
|
+
hoodi: Readonly<Hoodi>;
|
|
1989
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
836
1990
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1991
|
+
mantle: Readonly<MantleTestnet>;
|
|
1992
|
+
mantra: Readonly<MantraTestnet>;
|
|
837
1993
|
polygon: Readonly<PolygonTestnet>;
|
|
1994
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1995
|
+
phrs: Readonly<PharosTestnet>;
|
|
1996
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
1997
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
1998
|
+
lineaeth: Readonly<LineaETHTestnet>;
|
|
1999
|
+
oas: Readonly<OasTestnet>;
|
|
2000
|
+
og: Readonly<OgTestnet>;
|
|
838
2001
|
ofc: Readonly<OfcTestnet>;
|
|
839
2002
|
optimism: Readonly<OptimismTestnet>;
|
|
840
2003
|
osmo: Readonly<OsmoTestnet>;
|
|
841
2004
|
rbtc: Readonly<RbtcTestnet>;
|
|
2005
|
+
rune: Readonly<RuneTestNet>;
|
|
2006
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
842
2007
|
stellar: Readonly<StellarTestnet>;
|
|
843
2008
|
sei: Readonly<SeiTestnet>;
|
|
2009
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
844
2010
|
sol: Readonly<SolTestnet>;
|
|
845
2011
|
sui: Readonly<SuiTestnet>;
|
|
846
2012
|
near: Readonly<NearTestnet>;
|
|
847
2013
|
stx: Readonly<StxTestnet>;
|
|
2014
|
+
stt: Readonly<SomniaTestnet>;
|
|
2015
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
2016
|
+
sonic: Readonly<SonicTestnet>;
|
|
2017
|
+
kaia: Readonly<KaiaTestnet>;
|
|
848
2018
|
susd: Readonly<SUSDTestnet>;
|
|
849
|
-
|
|
2019
|
+
coreum: Readonly<CoreumTestnet>;
|
|
2020
|
+
tao: Readonly<BittensorTestnet>;
|
|
850
2021
|
tia: Readonly<TiaTestnet>;
|
|
851
2022
|
ton: Readonly<TonTestnet>;
|
|
852
2023
|
trx: Readonly<TrxTestnet>;
|
|
2024
|
+
vet: Readonly<VetTestnet>;
|
|
2025
|
+
wemix: Readonly<WemixTestnet>;
|
|
2026
|
+
world: Readonly<WorldTestnet>;
|
|
2027
|
+
xdc: Readonly<XdcTestnet>;
|
|
2028
|
+
xpl: Readonly<PlasmaTestnet>;
|
|
853
2029
|
xrp: Readonly<XrpTestnet>;
|
|
854
2030
|
xtz: Readonly<XtzTestnet>;
|
|
855
2031
|
zCash: Readonly<ZCashTestnet>;
|
|
856
2032
|
zeta: Readonly<ZetaTestnet>;
|
|
2033
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
857
2034
|
};
|
|
858
2035
|
};
|
|
859
2036
|
export {};
|