@bitgo-beta/statics 15.1.1-beta.136 → 15.1.1-beta.1360
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 +914 -0
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +8 -3
- package/dist/src/base.d.ts +1928 -46
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +2013 -57
- 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 +667 -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 +1933 -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 +782 -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 +1588 -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 +157 -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 +421 -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 -1616
- 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 +144 -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 +1206 -9
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1524 -74
- 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,6 +173,60 @@ 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
|
+
}
|
|
202
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
203
|
+
name: string;
|
|
204
|
+
family: CoinFamily;
|
|
205
|
+
explorerUrl: string;
|
|
206
|
+
accountExplorerUrl: string;
|
|
207
|
+
chainId: number;
|
|
208
|
+
nativeCoinOperationHashPrefix: string;
|
|
209
|
+
tokenOperationHashPrefix: string;
|
|
210
|
+
forwarderFactoryAddress: string;
|
|
211
|
+
forwarderImplementationAddress: string;
|
|
212
|
+
walletFactoryAddress: string;
|
|
213
|
+
walletImplementationAddress: string;
|
|
214
|
+
batcherContractAddress: string;
|
|
215
|
+
}
|
|
216
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
217
|
+
name: string;
|
|
218
|
+
family: CoinFamily;
|
|
219
|
+
explorerUrl: string;
|
|
220
|
+
accountExplorerUrl: string;
|
|
221
|
+
chainId: number;
|
|
222
|
+
nativeCoinOperationHashPrefix: string;
|
|
223
|
+
tokenOperationHashPrefix: string;
|
|
224
|
+
forwarderFactoryAddress: string;
|
|
225
|
+
forwarderImplementationAddress: string;
|
|
226
|
+
walletFactoryAddress: string;
|
|
227
|
+
walletImplementationAddress: string;
|
|
228
|
+
batcherContractAddress: string;
|
|
229
|
+
}
|
|
113
230
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
231
|
name: string;
|
|
115
232
|
family: CoinFamily;
|
|
@@ -137,6 +254,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
254
|
alias: string;
|
|
138
255
|
vm: string;
|
|
139
256
|
txFee: string;
|
|
257
|
+
maxImportFee: string;
|
|
140
258
|
createSubnetTx: string;
|
|
141
259
|
createChainTx: string;
|
|
142
260
|
creationTxFee: string;
|
|
@@ -162,6 +280,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
280
|
hrp: string;
|
|
163
281
|
vm: string;
|
|
164
282
|
txFee: string;
|
|
283
|
+
maxImportFee: string;
|
|
165
284
|
createSubnetTx: string;
|
|
166
285
|
createChainTx: string;
|
|
167
286
|
creationTxFee: string;
|
|
@@ -180,6 +299,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
299
|
explorerUrl: string;
|
|
181
300
|
accountExplorerUrl: string;
|
|
182
301
|
chainId: number;
|
|
302
|
+
nativeCoinOperationHashPrefix: string;
|
|
303
|
+
tokenOperationHashPrefix: string;
|
|
304
|
+
batcherContractAddress: string;
|
|
183
305
|
}
|
|
184
306
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
307
|
name: string;
|
|
@@ -187,6 +309,27 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
309
|
explorerUrl: string;
|
|
188
310
|
accountExplorerUrl: string;
|
|
189
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;
|
|
190
333
|
}
|
|
191
334
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
335
|
name: string;
|
|
@@ -199,6 +342,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
199
342
|
family: CoinFamily;
|
|
200
343
|
utxolibName: string;
|
|
201
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;
|
|
202
364
|
}
|
|
203
365
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
366
|
name: string;
|
|
@@ -272,7 +434,7 @@ declare class ECashTestnet extends Testnet implements UtxoNetwork {
|
|
|
272
434
|
utxolibName: string;
|
|
273
435
|
explorerUrl: undefined;
|
|
274
436
|
}
|
|
275
|
-
declare class
|
|
437
|
+
declare class PolkadotAssetHub extends Mainnet implements DotNetwork {
|
|
276
438
|
name: string;
|
|
277
439
|
family: CoinFamily;
|
|
278
440
|
explorerUrl: string;
|
|
@@ -282,7 +444,7 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
282
444
|
chainName: string;
|
|
283
445
|
txVersion: number;
|
|
284
446
|
}
|
|
285
|
-
declare class
|
|
447
|
+
declare class WestendAssetHub extends Testnet implements DotNetwork {
|
|
286
448
|
name: string;
|
|
287
449
|
family: CoinFamily;
|
|
288
450
|
explorerUrl: string;
|
|
@@ -298,6 +460,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
298
460
|
explorerUrl: string;
|
|
299
461
|
accountExplorerUrl: string;
|
|
300
462
|
chainId: number;
|
|
463
|
+
nativeCoinOperationHashPrefix: string;
|
|
464
|
+
tokenOperationHashPrefix: string;
|
|
301
465
|
}
|
|
302
466
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
303
467
|
name: string;
|
|
@@ -305,6 +469,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
305
469
|
explorerUrl: string;
|
|
306
470
|
accountExplorerUrl: string;
|
|
307
471
|
chainId: number;
|
|
472
|
+
nativeCoinOperationHashPrefix: string;
|
|
473
|
+
tokenOperationHashPrefix: string;
|
|
308
474
|
}
|
|
309
475
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
310
476
|
name: string;
|
|
@@ -328,6 +494,10 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
328
494
|
batcherContractAddress: string;
|
|
329
495
|
forwarderFactoryAddress: string;
|
|
330
496
|
forwarderImplementationAddress: string;
|
|
497
|
+
nativeCoinOperationHashPrefix: string;
|
|
498
|
+
tokenOperationHashPrefix: string;
|
|
499
|
+
walletV4ForwarderFactoryAddress: string;
|
|
500
|
+
walletV4ForwarderImplementationAddress: string;
|
|
331
501
|
}
|
|
332
502
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
333
503
|
name: string;
|
|
@@ -344,6 +514,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
344
514
|
batcherContractAddress: string;
|
|
345
515
|
forwarderFactoryAddress: string;
|
|
346
516
|
forwarderImplementationAddress: string;
|
|
517
|
+
nativeCoinOperationHashPrefix: string;
|
|
518
|
+
tokenOperationHashPrefix: string;
|
|
347
519
|
}
|
|
348
520
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
349
521
|
name: string;
|
|
@@ -360,6 +532,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
360
532
|
batcherContractAddress: string;
|
|
361
533
|
forwarderFactoryAddress: string;
|
|
362
534
|
forwarderImplementationAddress: string;
|
|
535
|
+
nativeCoinOperationHashPrefix: string;
|
|
536
|
+
tokenOperationHashPrefix: string;
|
|
363
537
|
}
|
|
364
538
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
365
539
|
name: string;
|
|
@@ -371,6 +545,38 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
371
545
|
batcherContractAddress: string;
|
|
372
546
|
forwarderFactoryAddress: string;
|
|
373
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;
|
|
374
580
|
}
|
|
375
581
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
582
|
name: string;
|
|
@@ -378,6 +584,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
584
|
explorerUrl: string;
|
|
379
585
|
accountExplorerUrl: string;
|
|
380
586
|
chainId: number;
|
|
587
|
+
nativeCoinOperationHashPrefix: string;
|
|
588
|
+
tokenOperationHashPrefix: string;
|
|
381
589
|
}
|
|
382
590
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
591
|
name: string;
|
|
@@ -385,6 +593,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
593
|
explorerUrl: string;
|
|
386
594
|
accountExplorerUrl: string;
|
|
387
595
|
chainId: number;
|
|
596
|
+
nativeCoinOperationHashPrefix: string;
|
|
597
|
+
tokenOperationHashPrefix: string;
|
|
388
598
|
}
|
|
389
599
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
600
|
name: string;
|
|
@@ -434,6 +644,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
644
|
explorerUrl: string;
|
|
435
645
|
accountExplorerUrl: string;
|
|
436
646
|
chainId: number;
|
|
647
|
+
nativeCoinOperationHashPrefix: string;
|
|
648
|
+
tokenOperationHashPrefix: string;
|
|
437
649
|
}
|
|
438
650
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
651
|
name: string;
|
|
@@ -441,6 +653,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
653
|
explorerUrl: string;
|
|
442
654
|
accountExplorerUrl: string;
|
|
443
655
|
chainId: number;
|
|
656
|
+
nativeCoinOperationHashPrefix: string;
|
|
657
|
+
tokenOperationHashPrefix: string;
|
|
444
658
|
}
|
|
445
659
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
660
|
name: string;
|
|
@@ -572,12 +786,104 @@ declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
|
572
786
|
family: CoinFamily;
|
|
573
787
|
explorerUrl: string;
|
|
574
788
|
}
|
|
575
|
-
declare class
|
|
789
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
790
|
+
name: string;
|
|
791
|
+
family: CoinFamily;
|
|
792
|
+
explorerUrl: string;
|
|
793
|
+
}
|
|
794
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
795
|
+
name: string;
|
|
796
|
+
family: CoinFamily;
|
|
797
|
+
explorerUrl: string;
|
|
798
|
+
}
|
|
799
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
800
|
+
name: string;
|
|
801
|
+
family: CoinFamily;
|
|
802
|
+
explorerUrl: string;
|
|
803
|
+
}
|
|
804
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
805
|
+
name: string;
|
|
806
|
+
family: CoinFamily;
|
|
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;
|
|
880
|
+
}
|
|
881
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
576
882
|
name: string;
|
|
577
883
|
family: CoinFamily;
|
|
578
884
|
explorerUrl: string;
|
|
579
885
|
}
|
|
580
|
-
declare class
|
|
886
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
581
887
|
name: string;
|
|
582
888
|
family: CoinFamily;
|
|
583
889
|
explorerUrl: string;
|
|
@@ -616,9 +922,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
616
922
|
family: CoinFamily;
|
|
617
923
|
explorerUrl: undefined;
|
|
618
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
|
+
}
|
|
619
940
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
620
941
|
name: string;
|
|
621
942
|
family: CoinFamily;
|
|
943
|
+
accountExplorerUrl: string;
|
|
622
944
|
explorerUrl: string;
|
|
623
945
|
maxFeeLimit: string;
|
|
624
946
|
contractCallFeeLimit: string;
|
|
@@ -626,6 +948,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
626
948
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
627
949
|
name: string;
|
|
628
950
|
family: CoinFamily;
|
|
951
|
+
accountExplorerUrl: string;
|
|
629
952
|
explorerUrl: string;
|
|
630
953
|
maxFeeLimit: string;
|
|
631
954
|
contractCallFeeLimit: string;
|
|
@@ -644,11 +967,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
644
967
|
name: string;
|
|
645
968
|
family: CoinFamily;
|
|
646
969
|
explorerUrl: string;
|
|
970
|
+
accountExplorerUrl: string;
|
|
647
971
|
}
|
|
648
972
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
649
973
|
name: string;
|
|
650
974
|
family: CoinFamily;
|
|
651
975
|
explorerUrl: string;
|
|
976
|
+
accountExplorerUrl: string;
|
|
652
977
|
}
|
|
653
978
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
654
979
|
name: string;
|
|
@@ -687,6 +1012,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
687
1012
|
walletFactoryAddress: string;
|
|
688
1013
|
walletImplementationAddress: string;
|
|
689
1014
|
batcherContractAddress: string;
|
|
1015
|
+
nativeCoinOperationHashPrefix: string;
|
|
1016
|
+
tokenOperationHashPrefix: string;
|
|
690
1017
|
}
|
|
691
1018
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
692
1019
|
name: string;
|
|
@@ -699,26 +1026,803 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
699
1026
|
walletFactoryAddress: string;
|
|
700
1027
|
walletImplementationAddress: string;
|
|
701
1028
|
batcherContractAddress: string;
|
|
1029
|
+
nativeCoinOperationHashPrefix: string;
|
|
1030
|
+
tokenOperationHashPrefix: string;
|
|
1031
|
+
}
|
|
1032
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
1033
|
+
name: string;
|
|
1034
|
+
family: CoinFamily;
|
|
1035
|
+
explorerUrl: string;
|
|
1036
|
+
accountExplorerUrl: string;
|
|
1037
|
+
chainId: number;
|
|
1038
|
+
nativeCoinOperationHashPrefix: string;
|
|
1039
|
+
tokenOperationHashPrefix: string;
|
|
1040
|
+
forwarderFactoryAddress: string;
|
|
1041
|
+
forwarderImplementationAddress: string;
|
|
1042
|
+
walletFactoryAddress: string;
|
|
1043
|
+
walletImplementationAddress: string;
|
|
1044
|
+
batcherContractAddress: string;
|
|
1045
|
+
}
|
|
1046
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
1047
|
+
name: string;
|
|
1048
|
+
family: CoinFamily;
|
|
1049
|
+
explorerUrl: string;
|
|
1050
|
+
accountExplorerUrl: string;
|
|
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 CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1296
|
+
name: string;
|
|
1297
|
+
family: CoinFamily;
|
|
1298
|
+
explorerUrl: string;
|
|
1299
|
+
accountExplorerUrl: string;
|
|
1300
|
+
chainId: number;
|
|
1301
|
+
nativeCoinOperationHashPrefix: string;
|
|
1302
|
+
forwarderFactoryAddress: string;
|
|
1303
|
+
forwarderImplementationAddress: string;
|
|
1304
|
+
walletFactoryAddress: string;
|
|
1305
|
+
walletImplementationAddress: string;
|
|
1306
|
+
batcherContractAddress: string;
|
|
1307
|
+
}
|
|
1308
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1309
|
+
name: string;
|
|
1310
|
+
family: CoinFamily;
|
|
1311
|
+
explorerUrl: string;
|
|
1312
|
+
accountExplorerUrl: string;
|
|
1313
|
+
chainId: number;
|
|
1314
|
+
nativeCoinOperationHashPrefix: string;
|
|
1315
|
+
}
|
|
1316
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1317
|
+
name: string;
|
|
1318
|
+
family: CoinFamily;
|
|
1319
|
+
explorerUrl: string;
|
|
1320
|
+
accountExplorerUrl: string;
|
|
1321
|
+
chainId: number;
|
|
1322
|
+
nativeCoinOperationHashPrefix: string;
|
|
1323
|
+
walletFactoryAddress: string;
|
|
1324
|
+
batcherContractAddress: string;
|
|
1325
|
+
forwarderFactoryAddress: string;
|
|
1326
|
+
forwarderImplementationAddress: string;
|
|
1327
|
+
walletImplementationAddress: string;
|
|
1328
|
+
}
|
|
1329
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1330
|
+
name: string;
|
|
1331
|
+
family: CoinFamily;
|
|
1332
|
+
explorerUrl: string;
|
|
1333
|
+
accountExplorerUrl: string;
|
|
1334
|
+
chainId: number;
|
|
1335
|
+
nativeCoinOperationHashPrefix: string;
|
|
1336
|
+
}
|
|
1337
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1338
|
+
name: string;
|
|
1339
|
+
family: CoinFamily;
|
|
1340
|
+
explorerUrl: string;
|
|
1341
|
+
accountExplorerUrl: string;
|
|
1342
|
+
chainId: number;
|
|
1343
|
+
nativeCoinOperationHashPrefix: string;
|
|
1344
|
+
walletFactoryAddress: string;
|
|
1345
|
+
batcherContractAddress: string;
|
|
1346
|
+
forwarderFactoryAddress: string;
|
|
1347
|
+
forwarderImplementationAddress: string;
|
|
1348
|
+
walletImplementationAddress: string;
|
|
1349
|
+
}
|
|
1350
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1351
|
+
name: string;
|
|
1352
|
+
family: CoinFamily;
|
|
1353
|
+
explorerUrl: string;
|
|
1354
|
+
accountExplorerUrl: string;
|
|
1355
|
+
chainId: number;
|
|
1356
|
+
nativeCoinOperationHashPrefix: string;
|
|
1357
|
+
}
|
|
1358
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1359
|
+
name: string;
|
|
1360
|
+
family: CoinFamily;
|
|
1361
|
+
explorerUrl: string;
|
|
1362
|
+
accountExplorerUrl: string;
|
|
1363
|
+
chainId: number;
|
|
1364
|
+
nativeCoinOperationHashPrefix: string;
|
|
1365
|
+
walletFactoryAddress: string;
|
|
1366
|
+
batcherContractAddress: string;
|
|
1367
|
+
forwarderFactoryAddress: string;
|
|
1368
|
+
forwarderImplementationAddress: string;
|
|
1369
|
+
walletImplementationAddress: string;
|
|
1370
|
+
}
|
|
1371
|
+
declare class Og extends Mainnet implements EthereumNetwork {
|
|
1372
|
+
name: string;
|
|
1373
|
+
family: CoinFamily;
|
|
1374
|
+
explorerUrl: string;
|
|
1375
|
+
accountExplorerUrl: string;
|
|
1376
|
+
chainId: number;
|
|
1377
|
+
nativeCoinOperationHashPrefix: string;
|
|
1378
|
+
}
|
|
1379
|
+
declare class OgTestnet extends Testnet implements EthereumNetwork {
|
|
1380
|
+
name: string;
|
|
1381
|
+
family: CoinFamily;
|
|
1382
|
+
explorerUrl: string;
|
|
1383
|
+
accountExplorerUrl: string;
|
|
1384
|
+
chainId: number;
|
|
1385
|
+
nativeCoinOperationHashPrefix: string;
|
|
1386
|
+
}
|
|
1387
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1388
|
+
name: string;
|
|
1389
|
+
family: CoinFamily;
|
|
1390
|
+
explorerUrl: string;
|
|
1391
|
+
accountExplorerUrl: string;
|
|
1392
|
+
chainId: number;
|
|
1393
|
+
nativeCoinOperationHashPrefix: string;
|
|
1394
|
+
batcherContractAddress: string;
|
|
1395
|
+
forwarderFactoryAddress: string;
|
|
1396
|
+
forwarderImplementationAddress: string;
|
|
1397
|
+
}
|
|
1398
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1399
|
+
name: string;
|
|
1400
|
+
family: CoinFamily;
|
|
1401
|
+
explorerUrl: string;
|
|
1402
|
+
accountExplorerUrl: string;
|
|
1403
|
+
chainId: number;
|
|
1404
|
+
nativeCoinOperationHashPrefix: string;
|
|
1405
|
+
batcherContractAddress: string;
|
|
1406
|
+
forwarderFactoryAddress: string;
|
|
1407
|
+
forwarderImplementationAddress: string;
|
|
1408
|
+
}
|
|
1409
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1410
|
+
name: string;
|
|
1411
|
+
family: CoinFamily;
|
|
1412
|
+
explorerUrl: string;
|
|
1413
|
+
accountExplorerUrl: string;
|
|
1414
|
+
chainId: number;
|
|
1415
|
+
nativeCoinOperationHashPrefix: string;
|
|
1416
|
+
batcherContractAddress: string;
|
|
1417
|
+
forwarderFactoryAddress: string;
|
|
1418
|
+
forwarderImplementationAddress: string;
|
|
1419
|
+
}
|
|
1420
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1421
|
+
name: string;
|
|
1422
|
+
family: CoinFamily;
|
|
1423
|
+
explorerUrl: string;
|
|
1424
|
+
accountExplorerUrl: string;
|
|
1425
|
+
chainId: number;
|
|
1426
|
+
nativeCoinOperationHashPrefix: string;
|
|
1427
|
+
batcherContractAddress: string;
|
|
1428
|
+
forwarderFactoryAddress: string;
|
|
1429
|
+
forwarderImplementationAddress: string;
|
|
1430
|
+
}
|
|
1431
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1432
|
+
name: string;
|
|
1433
|
+
family: CoinFamily;
|
|
1434
|
+
explorerUrl: string;
|
|
1435
|
+
accountExplorerUrl: string;
|
|
1436
|
+
chainId: number;
|
|
1437
|
+
nativeCoinOperationHashPrefix: string;
|
|
1438
|
+
walletFactoryAddress: string;
|
|
1439
|
+
batcherContractAddress: string;
|
|
1440
|
+
forwarderFactoryAddress: string;
|
|
1441
|
+
forwarderImplementationAddress: string;
|
|
1442
|
+
walletImplementationAddress: string;
|
|
1443
|
+
}
|
|
1444
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1445
|
+
name: string;
|
|
1446
|
+
family: CoinFamily;
|
|
1447
|
+
explorerUrl: string;
|
|
1448
|
+
chainId: number;
|
|
1449
|
+
nativeCoinOperationHashPrefix: string;
|
|
1450
|
+
walletImplementationAddress: string;
|
|
1451
|
+
batcherContractAddress: string;
|
|
1452
|
+
forwarderFactoryAddress: string;
|
|
1453
|
+
forwarderImplementationAddress: string;
|
|
1454
|
+
}
|
|
1455
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1456
|
+
name: string;
|
|
1457
|
+
family: CoinFamily;
|
|
1458
|
+
explorerUrl: string;
|
|
1459
|
+
accountExplorerUrl: string;
|
|
1460
|
+
chainId: number;
|
|
1461
|
+
nativeCoinOperationHashPrefix: string;
|
|
1462
|
+
walletImplementationAddress: string;
|
|
1463
|
+
batcherContractAddress: string;
|
|
1464
|
+
forwarderFactoryAddress: string;
|
|
1465
|
+
forwarderImplementationAddress: string;
|
|
1466
|
+
}
|
|
1467
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1468
|
+
name: string;
|
|
1469
|
+
family: CoinFamily;
|
|
1470
|
+
explorerUrl: string;
|
|
1471
|
+
accountExplorerUrl: string;
|
|
1472
|
+
chainId: number;
|
|
1473
|
+
nativeCoinOperationHashPrefix: string;
|
|
1474
|
+
batcherContractAddress: string;
|
|
1475
|
+
forwarderFactoryAddress: string;
|
|
1476
|
+
forwarderImplementationAddress: string;
|
|
1477
|
+
walletImplementationAddress: string;
|
|
1478
|
+
}
|
|
1479
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1480
|
+
name: string;
|
|
1481
|
+
family: CoinFamily;
|
|
1482
|
+
explorerUrl: string;
|
|
1483
|
+
accountExplorerUrl: string;
|
|
1484
|
+
chainId: number;
|
|
1485
|
+
nativeCoinOperationHashPrefix: string;
|
|
1486
|
+
walletImplementationAddress: string;
|
|
1487
|
+
walletFactoryAddress: string;
|
|
1488
|
+
batcherContractAddress: string;
|
|
1489
|
+
forwarderFactoryAddress: string;
|
|
1490
|
+
forwarderImplementationAddress: string;
|
|
1491
|
+
}
|
|
1492
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1493
|
+
name: string;
|
|
1494
|
+
family: CoinFamily;
|
|
1495
|
+
explorerUrl: string;
|
|
1496
|
+
accountExplorerUrl: string;
|
|
1497
|
+
chainId: number;
|
|
1498
|
+
nativeCoinOperationHashPrefix: string;
|
|
1499
|
+
walletFactoryAddress: string;
|
|
1500
|
+
batcherContractAddress: string;
|
|
1501
|
+
forwarderFactoryAddress: string;
|
|
1502
|
+
forwarderImplementationAddress: string;
|
|
1503
|
+
walletImplementationAddress: string;
|
|
1504
|
+
}
|
|
1505
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1506
|
+
name: string;
|
|
1507
|
+
family: CoinFamily;
|
|
1508
|
+
explorerUrl: string;
|
|
1509
|
+
accountExplorerUrl: string;
|
|
1510
|
+
chainId: number;
|
|
1511
|
+
nativeCoinOperationHashPrefix: string;
|
|
1512
|
+
}
|
|
1513
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1514
|
+
name: string;
|
|
1515
|
+
family: CoinFamily;
|
|
1516
|
+
explorerUrl: string;
|
|
1517
|
+
accountExplorerUrl: string;
|
|
1518
|
+
chainId: number;
|
|
1519
|
+
nativeCoinOperationHashPrefix: string;
|
|
1520
|
+
walletFactoryAddress: string;
|
|
1521
|
+
batcherContractAddress: string;
|
|
1522
|
+
forwarderFactoryAddress: string;
|
|
1523
|
+
forwarderImplementationAddress: string;
|
|
1524
|
+
walletImplementationAddress: string;
|
|
1525
|
+
}
|
|
1526
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1527
|
+
name: string;
|
|
1528
|
+
family: CoinFamily;
|
|
1529
|
+
explorerUrl: string;
|
|
1530
|
+
accountExplorerUrl: string;
|
|
1531
|
+
chainId: number;
|
|
1532
|
+
nativeCoinOperationHashPrefix: string;
|
|
1533
|
+
walletFactoryAddress: string;
|
|
1534
|
+
batcherContractAddress: string;
|
|
1535
|
+
forwarderFactoryAddress: string;
|
|
1536
|
+
forwarderImplementationAddress: string;
|
|
1537
|
+
walletImplementationAddress: string;
|
|
1538
|
+
}
|
|
1539
|
+
declare class Somi extends Mainnet implements EthereumNetwork {
|
|
1540
|
+
name: string;
|
|
1541
|
+
family: CoinFamily;
|
|
1542
|
+
explorerUrl: string;
|
|
1543
|
+
chainId: number;
|
|
1544
|
+
nativeCoinOperationHashPrefix: string;
|
|
1545
|
+
walletImplementationAddress: string;
|
|
1546
|
+
walletFactoryAddress: string;
|
|
1547
|
+
forwarderImplementationAddress: string;
|
|
1548
|
+
forwarderFactoryAddress: string;
|
|
1549
|
+
batcherContractAddress: string;
|
|
1550
|
+
}
|
|
1551
|
+
export declare class FlareP extends Mainnet implements FlareNetwork {
|
|
1552
|
+
name: string;
|
|
1553
|
+
family: CoinFamily;
|
|
1554
|
+
explorerUrl: string;
|
|
1555
|
+
accountExplorerUrl: string;
|
|
1556
|
+
blockchainID: string;
|
|
1557
|
+
cChainBlockchainID: string;
|
|
1558
|
+
networkID: number;
|
|
1559
|
+
hrp: string;
|
|
1560
|
+
alias: string;
|
|
1561
|
+
vm: string;
|
|
1562
|
+
txFee: string;
|
|
1563
|
+
maxImportFee: string;
|
|
1564
|
+
createSubnetTx: string;
|
|
1565
|
+
createChainTx: string;
|
|
1566
|
+
creationTxFee: string;
|
|
1567
|
+
minConsumption: string;
|
|
1568
|
+
maxConsumption: string;
|
|
1569
|
+
maxSupply: string;
|
|
1570
|
+
minStake: string;
|
|
1571
|
+
minStakeDuration: string;
|
|
1572
|
+
maxStakeDuration: string;
|
|
1573
|
+
minDelegationStake: string;
|
|
1574
|
+
minDelegationFee: string;
|
|
1575
|
+
}
|
|
1576
|
+
export declare class FlarePTestnet extends Testnet implements FlareNetwork {
|
|
1577
|
+
name: string;
|
|
1578
|
+
family: CoinFamily;
|
|
1579
|
+
explorerUrl: string;
|
|
1580
|
+
accountExplorerUrl: string;
|
|
1581
|
+
blockchainID: string;
|
|
1582
|
+
cChainBlockchainID: string;
|
|
1583
|
+
networkID: number;
|
|
1584
|
+
hrp: string;
|
|
1585
|
+
alias: string;
|
|
1586
|
+
vm: string;
|
|
1587
|
+
txFee: string;
|
|
1588
|
+
maxImportFee: string;
|
|
1589
|
+
createSubnetTx: string;
|
|
1590
|
+
createChainTx: string;
|
|
1591
|
+
creationTxFee: string;
|
|
1592
|
+
minConsumption: string;
|
|
1593
|
+
maxConsumption: string;
|
|
1594
|
+
maxSupply: string;
|
|
1595
|
+
minStake: string;
|
|
1596
|
+
minStakeDuration: string;
|
|
1597
|
+
maxStakeDuration: string;
|
|
1598
|
+
minDelegationStake: string;
|
|
1599
|
+
minDelegationFee: string;
|
|
1600
|
+
}
|
|
1601
|
+
export declare class Flare extends Mainnet implements FlareNetwork, EthereumNetwork {
|
|
1602
|
+
name: string;
|
|
1603
|
+
family: CoinFamily;
|
|
1604
|
+
explorerUrl: string;
|
|
1605
|
+
accountExplorerUrl: string;
|
|
1606
|
+
chainId: number;
|
|
1607
|
+
nativeCoinOperationHashPrefix: string;
|
|
1608
|
+
walletFactoryAddress: string;
|
|
1609
|
+
walletImplementationAddress: string;
|
|
1610
|
+
batcherContractAddress: string;
|
|
1611
|
+
forwarderFactoryAddress: string;
|
|
1612
|
+
forwarderImplementationAddress: string;
|
|
1613
|
+
}
|
|
1614
|
+
export declare class FlareTestnet extends Testnet implements FlareNetwork, EthereumNetwork {
|
|
1615
|
+
name: string;
|
|
1616
|
+
family: CoinFamily;
|
|
1617
|
+
explorerUrl: string;
|
|
1618
|
+
accountExplorerUrl: string;
|
|
1619
|
+
chainId: number;
|
|
1620
|
+
nativeCoinOperationHashPrefix: string;
|
|
1621
|
+
walletFactoryAddress: string;
|
|
1622
|
+
walletImplementationAddress: string;
|
|
1623
|
+
batcherContractAddress: string;
|
|
1624
|
+
forwarderFactoryAddress: string;
|
|
1625
|
+
forwarderImplementationAddress: string;
|
|
1626
|
+
}
|
|
1627
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1628
|
+
name: string;
|
|
1629
|
+
family: CoinFamily;
|
|
1630
|
+
explorerUrl: string;
|
|
1631
|
+
accountExplorerUrl: string;
|
|
1632
|
+
chainId: number;
|
|
1633
|
+
nativeCoinOperationHashPrefix: string;
|
|
1634
|
+
batcherContractAddress: string;
|
|
1635
|
+
forwarderFactoryAddress: string;
|
|
1636
|
+
forwarderImplementationAddress: string;
|
|
1637
|
+
}
|
|
1638
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1639
|
+
name: string;
|
|
1640
|
+
family: CoinFamily;
|
|
1641
|
+
explorerUrl: string;
|
|
1642
|
+
accountExplorerUrl: string;
|
|
1643
|
+
chainId: number;
|
|
1644
|
+
nativeCoinOperationHashPrefix: string;
|
|
1645
|
+
batcherContractAddress: string;
|
|
1646
|
+
forwarderFactoryAddress: string;
|
|
1647
|
+
forwarderImplementationAddress: string;
|
|
1648
|
+
}
|
|
1649
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1650
|
+
name: string;
|
|
1651
|
+
family: CoinFamily;
|
|
1652
|
+
explorerUrl: string;
|
|
1653
|
+
accountExplorerUrl: string;
|
|
1654
|
+
chainId: number;
|
|
1655
|
+
nativeCoinOperationHashPrefix: string;
|
|
1656
|
+
tokenOperationHashPrefix: string;
|
|
1657
|
+
forwarderFactoryAddress: string;
|
|
1658
|
+
forwarderImplementationAddress: string;
|
|
1659
|
+
walletFactoryAddress: string;
|
|
1660
|
+
walletImplementationAddress: string;
|
|
1661
|
+
}
|
|
1662
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1663
|
+
name: string;
|
|
1664
|
+
family: CoinFamily;
|
|
1665
|
+
explorerUrl: string;
|
|
1666
|
+
accountExplorerUrl: string;
|
|
1667
|
+
chainId: number;
|
|
1668
|
+
nativeCoinOperationHashPrefix: string;
|
|
1669
|
+
tokenOperationHashPrefix: string;
|
|
1670
|
+
forwarderFactoryAddress: string;
|
|
1671
|
+
forwarderImplementationAddress: string;
|
|
1672
|
+
walletFactoryAddress: string;
|
|
1673
|
+
walletImplementationAddress: string;
|
|
1674
|
+
}
|
|
1675
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1676
|
+
name: string;
|
|
1677
|
+
family: CoinFamily;
|
|
1678
|
+
explorerUrl: string;
|
|
1679
|
+
specName: string;
|
|
1680
|
+
genesisHash: string;
|
|
1681
|
+
specVersion: number;
|
|
1682
|
+
chainName: string;
|
|
1683
|
+
txVersion: number;
|
|
1684
|
+
}
|
|
1685
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1686
|
+
name: string;
|
|
1687
|
+
family: CoinFamily;
|
|
1688
|
+
explorerUrl: string;
|
|
1689
|
+
specName: SubstrateSpecNameType;
|
|
1690
|
+
genesisHash: string;
|
|
1691
|
+
specVersion: number;
|
|
1692
|
+
chainName: string;
|
|
1693
|
+
txVersion: number;
|
|
1694
|
+
}
|
|
1695
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1696
|
+
name: string;
|
|
1697
|
+
family: CoinFamily;
|
|
1698
|
+
explorerUrl: string;
|
|
1699
|
+
accountExplorerUrl: string;
|
|
1700
|
+
chainId: number;
|
|
1701
|
+
forwarderFactoryAddress: string;
|
|
1702
|
+
forwarderImplementationAddress: string;
|
|
1703
|
+
}
|
|
1704
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1705
|
+
name: string;
|
|
1706
|
+
family: CoinFamily;
|
|
1707
|
+
explorerUrl: string;
|
|
1708
|
+
accountExplorerUrl: string;
|
|
1709
|
+
chainId: number;
|
|
1710
|
+
forwarderFactoryAddress: string;
|
|
1711
|
+
forwarderImplementationAddress: string;
|
|
1712
|
+
}
|
|
1713
|
+
declare class Iota extends Mainnet implements AccountNetwork {
|
|
1714
|
+
name: string;
|
|
1715
|
+
family: CoinFamily;
|
|
1716
|
+
explorerUrl: string;
|
|
1717
|
+
}
|
|
1718
|
+
declare class IotaTestnet extends Testnet implements AccountNetwork {
|
|
1719
|
+
name: string;
|
|
1720
|
+
family: CoinFamily;
|
|
1721
|
+
explorerUrl: string;
|
|
1722
|
+
}
|
|
1723
|
+
declare class Flow extends Mainnet implements EthereumNetwork {
|
|
1724
|
+
name: string;
|
|
1725
|
+
family: CoinFamily;
|
|
1726
|
+
explorerUrl: string;
|
|
1727
|
+
accountExplorerUrl: string;
|
|
1728
|
+
chainId: number;
|
|
1729
|
+
nativeCoinOperationHashPrefix: string;
|
|
1730
|
+
}
|
|
1731
|
+
declare class FlowTestnet extends Testnet implements EthereumNetwork {
|
|
1732
|
+
name: string;
|
|
1733
|
+
family: CoinFamily;
|
|
1734
|
+
explorerUrl: string;
|
|
1735
|
+
accountExplorerUrl: string;
|
|
1736
|
+
chainId: number;
|
|
1737
|
+
nativeCoinOperationHashPrefix: string;
|
|
1738
|
+
}
|
|
1739
|
+
declare class MegaETH extends Mainnet implements EthereumNetwork {
|
|
1740
|
+
name: string;
|
|
1741
|
+
family: CoinFamily;
|
|
1742
|
+
explorerUrl: string;
|
|
1743
|
+
accountExplorerUrl: string;
|
|
1744
|
+
chainId: number;
|
|
1745
|
+
nativeCoinOperationHashPrefix: string;
|
|
1746
|
+
}
|
|
1747
|
+
declare class MegaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1748
|
+
name: string;
|
|
1749
|
+
family: CoinFamily;
|
|
1750
|
+
explorerUrl: string;
|
|
1751
|
+
accountExplorerUrl: string;
|
|
1752
|
+
chainId: number;
|
|
1753
|
+
nativeCoinOperationHashPrefix: string;
|
|
1754
|
+
}
|
|
1755
|
+
declare class Plume 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 HederaEVMTestnet 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 HederaEVM 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 PlumeTestnet 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 Canton extends Mainnet implements BaseNetwork {
|
|
1788
|
+
name: string;
|
|
1789
|
+
family: CoinFamily;
|
|
1790
|
+
explorerUrl: string;
|
|
1791
|
+
}
|
|
1792
|
+
declare class CantonTestnet extends Testnet implements BaseNetwork {
|
|
1793
|
+
name: string;
|
|
1794
|
+
family: CoinFamily;
|
|
1795
|
+
explorerUrl: string;
|
|
702
1796
|
}
|
|
703
1797
|
export declare const Networks: {
|
|
704
1798
|
main: {
|
|
705
1799
|
ada: Readonly<Ada>;
|
|
706
1800
|
algorand: Readonly<Algorand>;
|
|
1801
|
+
apechain: Readonly<ApeChain>;
|
|
1802
|
+
apt: Readonly<Apt>;
|
|
1803
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1804
|
+
asi: Readonly<Asi>;
|
|
707
1805
|
atom: Readonly<Atom>;
|
|
708
1806
|
avalancheC: Readonly<AvalancheC>;
|
|
709
1807
|
avalancheP: Readonly<AvalancheP>;
|
|
1808
|
+
baby: Readonly<Baby>;
|
|
1809
|
+
basechain: Readonly<BaseChain>;
|
|
710
1810
|
bitcoin: Readonly<Bitcoin>;
|
|
711
1811
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
712
1812
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
713
1813
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1814
|
+
bera: Readonly<Berachain>;
|
|
714
1815
|
bld: Readonly<Bld>;
|
|
715
1816
|
bsc: Readonly<BinanceSmartChain>;
|
|
1817
|
+
canton: Readonly<Canton>;
|
|
716
1818
|
casper: Readonly<Casper>;
|
|
717
1819
|
celo: Readonly<Celo>;
|
|
718
|
-
|
|
1820
|
+
coredao: Readonly<Coredao>;
|
|
1821
|
+
coreum: Readonly<Coreum>;
|
|
1822
|
+
cronos: Readonly<Cronos>;
|
|
719
1823
|
dash: Readonly<Dash>;
|
|
720
1824
|
dogecoin: Readonly<Dogecoin>;
|
|
721
|
-
dot: Readonly<
|
|
1825
|
+
dot: Readonly<PolkadotAssetHub>;
|
|
722
1826
|
eCash: Readonly<ECash>;
|
|
723
1827
|
eos: Readonly<Eos>;
|
|
724
1828
|
ethereum: Readonly<Ethereum>;
|
|
@@ -726,78 +1830,171 @@ export declare const Networks: {
|
|
|
726
1830
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
727
1831
|
ethereumW: Readonly<EthereumW>;
|
|
728
1832
|
fiat: Readonly<Fiat>;
|
|
1833
|
+
fetchai: Readonly<FetchAi>;
|
|
1834
|
+
flow: Readonly<Flow>;
|
|
1835
|
+
flr: Readonly<Flare>;
|
|
1836
|
+
flrP: Readonly<FlareP>;
|
|
729
1837
|
hash: Readonly<Hash>;
|
|
730
1838
|
hedera: Readonly<Hedera>;
|
|
1839
|
+
hederaEVM: Readonly<HederaEVM>;
|
|
1840
|
+
icp: Readonly<Icp>;
|
|
1841
|
+
ip: Readonly<IP>;
|
|
1842
|
+
initia: Readonly<Initia>;
|
|
1843
|
+
iota: Readonly<Iota>;
|
|
731
1844
|
injective: Readonly<Injective>;
|
|
1845
|
+
irys: Readonly<Irys>;
|
|
1846
|
+
islm: Readonly<Islm>;
|
|
1847
|
+
kaia: Readonly<Kaia>;
|
|
732
1848
|
kava: Readonly<Kava>;
|
|
1849
|
+
kavaevm: Readonly<KavaEVM>;
|
|
1850
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
733
1851
|
litecoin: Readonly<Litecoin>;
|
|
1852
|
+
megaeth: Readonly<MegaETH>;
|
|
1853
|
+
mon: Readonly<Monad>;
|
|
1854
|
+
mantra: Readonly<Mantra>;
|
|
1855
|
+
plume: Readonly<Plume>;
|
|
734
1856
|
polygon: Readonly<Polygon>;
|
|
1857
|
+
polyx: Readonly<Polymesh>;
|
|
1858
|
+
phrs: Readonly<Pharos>;
|
|
1859
|
+
ctc: Readonly<Creditcoin>;
|
|
1860
|
+
hypeevm: Readonly<HypeEVM>;
|
|
1861
|
+
lineaeth: Readonly<LineaETH>;
|
|
1862
|
+
oas: Readonly<Oas>;
|
|
1863
|
+
og: Readonly<Og>;
|
|
735
1864
|
ofc: Readonly<Ofc>;
|
|
1865
|
+
optimism: Readonly<Optimism>;
|
|
736
1866
|
osmo: Readonly<Osmo>;
|
|
737
1867
|
rbtc: Readonly<Rbtc>;
|
|
1868
|
+
rune: Readonly<Rune>;
|
|
738
1869
|
stellar: Readonly<Stellar>;
|
|
739
1870
|
sei: Readonly<Sei>;
|
|
1871
|
+
seievm: Readonly<SeiEvm>;
|
|
1872
|
+
sgb: Readonly<Songbird>;
|
|
740
1873
|
sol: Readonly<Sol>;
|
|
1874
|
+
sonic: Readonly<Sonic>;
|
|
741
1875
|
sui: Readonly<Sui>;
|
|
742
1876
|
near: Readonly<Near>;
|
|
743
1877
|
stx: Readonly<Stx>;
|
|
1878
|
+
somi: Readonly<Somi>;
|
|
1879
|
+
soneium: Readonly<Soneium>;
|
|
744
1880
|
susd: Readonly<SUSD>;
|
|
1881
|
+
tao: Readonly<Bittensor>;
|
|
745
1882
|
tia: Readonly<Tia>;
|
|
746
1883
|
ton: Readonly<Ton>;
|
|
747
1884
|
trx: Readonly<Trx>;
|
|
1885
|
+
vet: Readonly<Vet>;
|
|
1886
|
+
wemix: Readonly<Wemix>;
|
|
1887
|
+
world: Readonly<World>;
|
|
1888
|
+
xdc: Readonly<Xdc>;
|
|
1889
|
+
xpl: Readonly<Plasma>;
|
|
748
1890
|
xrp: Readonly<Xrp>;
|
|
749
1891
|
xtz: Readonly<Xtz>;
|
|
750
1892
|
zCash: Readonly<ZCash>;
|
|
751
1893
|
zeta: Readonly<Zeta>;
|
|
1894
|
+
zkSync: Readonly<ZkSync>;
|
|
752
1895
|
};
|
|
753
1896
|
test: {
|
|
754
1897
|
ada: Readonly<AdaTestnet>;
|
|
755
1898
|
algorand: Readonly<AlgorandTestnet>;
|
|
1899
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1900
|
+
apt: Readonly<AptTestnet>;
|
|
1901
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1902
|
+
asi: Readonly<AsiTestnet>;
|
|
756
1903
|
atom: Readonly<AtomTestnet>;
|
|
757
1904
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
758
1905
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1906
|
+
baby: Readonly<BabyTestnet>;
|
|
1907
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
759
1908
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1909
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1910
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1911
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
760
1912
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
761
1913
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
762
1914
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1915
|
+
bera: Readonly<BerachainTestnet>;
|
|
763
1916
|
bld: Readonly<BldTestnet>;
|
|
764
1917
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
1918
|
+
canton: Readonly<CantonTestnet>;
|
|
765
1919
|
casper: Readonly<CasperTestnet>;
|
|
1920
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
766
1921
|
celo: Readonly<CeloTestnet>;
|
|
1922
|
+
cronos: Readonly<CronosTestnet>;
|
|
767
1923
|
dash: Readonly<DashTestnet>;
|
|
768
1924
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
769
|
-
dot: Readonly<
|
|
1925
|
+
dot: Readonly<WestendAssetHub>;
|
|
770
1926
|
eCash: Readonly<ECashTestnet>;
|
|
771
1927
|
eos: Readonly<EosTestnet>;
|
|
772
1928
|
fiat: Readonly<FiatTestnet>;
|
|
1929
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1930
|
+
flow: Readonly<FlowTestnet>;
|
|
1931
|
+
flr: Readonly<FlareTestnet>;
|
|
1932
|
+
flrP: Readonly<FlarePTestnet>;
|
|
1933
|
+
mon: Readonly<MonadTestnet>;
|
|
1934
|
+
megaeth: Readonly<MegaETHTestnet>;
|
|
773
1935
|
pyrmont: Readonly<Pyrmont>;
|
|
1936
|
+
plume: Readonly<PlumeTestnet>;
|
|
774
1937
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
775
1938
|
hash: Readonly<HashTestnet>;
|
|
776
1939
|
hedera: Readonly<HederaTestnet>;
|
|
1940
|
+
hederaEVM: Readonly<HederaEVMTestnet>;
|
|
1941
|
+
icp: Readonly<IcpTestnet>;
|
|
1942
|
+
ip: Readonly<IPTestnet>;
|
|
1943
|
+
initia: Readonly<InitiaTestnet>;
|
|
777
1944
|
injective: Readonly<InjectiveTestnet>;
|
|
1945
|
+
iota: Readonly<IotaTestnet>;
|
|
1946
|
+
irys: Readonly<IrysTestnet>;
|
|
1947
|
+
islm: Readonly<IslmTestnet>;
|
|
778
1948
|
kava: Readonly<KavaTestnet>;
|
|
1949
|
+
kavaevm: Readonly<KavaEVMTestnet>;
|
|
779
1950
|
kovan: Readonly<Kovan>;
|
|
780
1951
|
goerli: Readonly<Goerli>;
|
|
1952
|
+
holesky: Readonly<Holesky>;
|
|
1953
|
+
hoodi: Readonly<Hoodi>;
|
|
1954
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
781
1955
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1956
|
+
mantra: Readonly<MantraTestnet>;
|
|
782
1957
|
polygon: Readonly<PolygonTestnet>;
|
|
1958
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1959
|
+
phrs: Readonly<PharosTestnet>;
|
|
1960
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
1961
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
1962
|
+
lineaeth: Readonly<LineaETHTestnet>;
|
|
1963
|
+
oas: Readonly<OasTestnet>;
|
|
1964
|
+
og: Readonly<OgTestnet>;
|
|
783
1965
|
ofc: Readonly<OfcTestnet>;
|
|
1966
|
+
optimism: Readonly<OptimismTestnet>;
|
|
784
1967
|
osmo: Readonly<OsmoTestnet>;
|
|
785
1968
|
rbtc: Readonly<RbtcTestnet>;
|
|
1969
|
+
rune: Readonly<RuneTestNet>;
|
|
1970
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
786
1971
|
stellar: Readonly<StellarTestnet>;
|
|
787
1972
|
sei: Readonly<SeiTestnet>;
|
|
1973
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
788
1974
|
sol: Readonly<SolTestnet>;
|
|
789
1975
|
sui: Readonly<SuiTestnet>;
|
|
790
1976
|
near: Readonly<NearTestnet>;
|
|
791
1977
|
stx: Readonly<StxTestnet>;
|
|
1978
|
+
stt: Readonly<SomniaTestnet>;
|
|
1979
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
1980
|
+
sonic: Readonly<SonicTestnet>;
|
|
1981
|
+
kaia: Readonly<KaiaTestnet>;
|
|
792
1982
|
susd: Readonly<SUSDTestnet>;
|
|
793
|
-
|
|
1983
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1984
|
+
tao: Readonly<BittensorTestnet>;
|
|
794
1985
|
tia: Readonly<TiaTestnet>;
|
|
795
1986
|
ton: Readonly<TonTestnet>;
|
|
796
1987
|
trx: Readonly<TrxTestnet>;
|
|
1988
|
+
vet: Readonly<VetTestnet>;
|
|
1989
|
+
wemix: Readonly<WemixTestnet>;
|
|
1990
|
+
world: Readonly<WorldTestnet>;
|
|
1991
|
+
xdc: Readonly<XdcTestnet>;
|
|
1992
|
+
xpl: Readonly<PlasmaTestnet>;
|
|
797
1993
|
xrp: Readonly<XrpTestnet>;
|
|
798
1994
|
xtz: Readonly<XtzTestnet>;
|
|
799
1995
|
zCash: Readonly<ZCashTestnet>;
|
|
800
1996
|
zeta: Readonly<ZetaTestnet>;
|
|
1997
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
801
1998
|
};
|
|
802
1999
|
};
|
|
803
2000
|
export {};
|