@bitgo-beta/statics 15.1.1-beta.122 → 15.1.1-beta.1221
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/.mocharc.js +1 -1
- package/CHANGELOG.md +3118 -0
- package/dist/src/account.d.ts +896 -73
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1406 -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 +831 -0
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +8 -3
- package/dist/src/base.d.ts +1825 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1900 -50
- package/dist/src/coinFeatures.d.ts +106 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +627 -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 +12 -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 +124 -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 +176 -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 +1743 -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 +14 -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 +706 -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 +1539 -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 +155 -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 +395 -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 +325 -1581
- 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 +118 -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 +1187 -3
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1495 -52
- package/dist/src/ofc.d.ts +529 -3
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +1261 -28
- package/dist/src/tokenConfig.d.ts +256 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +954 -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 +2 -2
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;
|
|
@@ -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;
|
|
@@ -552,6 +766,128 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
552
766
|
family: CoinFamily;
|
|
553
767
|
explorerUrl: string;
|
|
554
768
|
}
|
|
769
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
770
|
+
name: string;
|
|
771
|
+
family: CoinFamily;
|
|
772
|
+
explorerUrl: string;
|
|
773
|
+
}
|
|
774
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
775
|
+
name: string;
|
|
776
|
+
family: CoinFamily;
|
|
777
|
+
explorerUrl: string;
|
|
778
|
+
}
|
|
779
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
780
|
+
name: string;
|
|
781
|
+
family: CoinFamily;
|
|
782
|
+
explorerUrl: string;
|
|
783
|
+
}
|
|
784
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
785
|
+
name: string;
|
|
786
|
+
family: CoinFamily;
|
|
787
|
+
explorerUrl: string;
|
|
788
|
+
}
|
|
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 {
|
|
882
|
+
name: string;
|
|
883
|
+
family: CoinFamily;
|
|
884
|
+
explorerUrl: string;
|
|
885
|
+
}
|
|
886
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
887
|
+
name: string;
|
|
888
|
+
family: CoinFamily;
|
|
889
|
+
explorerUrl: string;
|
|
890
|
+
}
|
|
555
891
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
556
892
|
name: string;
|
|
557
893
|
family: CoinFamily;
|
|
@@ -586,9 +922,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
586
922
|
family: CoinFamily;
|
|
587
923
|
explorerUrl: undefined;
|
|
588
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
|
+
}
|
|
589
940
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
590
941
|
name: string;
|
|
591
942
|
family: CoinFamily;
|
|
943
|
+
accountExplorerUrl: string;
|
|
592
944
|
explorerUrl: string;
|
|
593
945
|
maxFeeLimit: string;
|
|
594
946
|
contractCallFeeLimit: string;
|
|
@@ -596,6 +948,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
596
948
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
597
949
|
name: string;
|
|
598
950
|
family: CoinFamily;
|
|
951
|
+
accountExplorerUrl: string;
|
|
599
952
|
explorerUrl: string;
|
|
600
953
|
maxFeeLimit: string;
|
|
601
954
|
contractCallFeeLimit: string;
|
|
@@ -614,11 +967,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
614
967
|
name: string;
|
|
615
968
|
family: CoinFamily;
|
|
616
969
|
explorerUrl: string;
|
|
970
|
+
accountExplorerUrl: string;
|
|
617
971
|
}
|
|
618
972
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
619
973
|
name: string;
|
|
620
974
|
family: CoinFamily;
|
|
621
975
|
explorerUrl: string;
|
|
976
|
+
accountExplorerUrl: string;
|
|
622
977
|
}
|
|
623
978
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
624
979
|
name: string;
|
|
@@ -657,6 +1012,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
657
1012
|
walletFactoryAddress: string;
|
|
658
1013
|
walletImplementationAddress: string;
|
|
659
1014
|
batcherContractAddress: string;
|
|
1015
|
+
nativeCoinOperationHashPrefix: string;
|
|
1016
|
+
tokenOperationHashPrefix: string;
|
|
660
1017
|
}
|
|
661
1018
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
662
1019
|
name: string;
|
|
@@ -669,22 +1026,754 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
669
1026
|
walletFactoryAddress: string;
|
|
670
1027
|
walletImplementationAddress: string;
|
|
671
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
|
+
}
|
|
1216
|
+
declare class Plasma extends Mainnet implements EthereumNetwork {
|
|
1217
|
+
name: string;
|
|
1218
|
+
family: CoinFamily;
|
|
1219
|
+
explorerUrl: string;
|
|
1220
|
+
accountExplorerUrl: string;
|
|
1221
|
+
chainId: number;
|
|
1222
|
+
nativeCoinOperationHashPrefix: string;
|
|
1223
|
+
}
|
|
1224
|
+
declare class PlasmaTestnet extends Testnet implements EthereumNetwork {
|
|
1225
|
+
name: string;
|
|
1226
|
+
family: CoinFamily;
|
|
1227
|
+
explorerUrl: string;
|
|
1228
|
+
accountExplorerUrl: string;
|
|
1229
|
+
chainId: number;
|
|
1230
|
+
nativeCoinOperationHashPrefix: string;
|
|
1231
|
+
}
|
|
1232
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1233
|
+
name: string;
|
|
1234
|
+
family: CoinFamily;
|
|
1235
|
+
explorerUrl: string;
|
|
1236
|
+
accountExplorerUrl: string;
|
|
1237
|
+
chainId: number;
|
|
1238
|
+
nativeCoinOperationHashPrefix: string;
|
|
1239
|
+
}
|
|
1240
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1241
|
+
name: string;
|
|
1242
|
+
family: CoinFamily;
|
|
1243
|
+
explorerUrl: string;
|
|
1244
|
+
accountExplorerUrl: string;
|
|
1245
|
+
chainId: number;
|
|
1246
|
+
nativeCoinOperationHashPrefix: string;
|
|
1247
|
+
}
|
|
1248
|
+
declare class KavaEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1249
|
+
name: string;
|
|
1250
|
+
family: CoinFamily;
|
|
1251
|
+
explorerUrl: string;
|
|
1252
|
+
accountExplorerUrl: string;
|
|
1253
|
+
chainId: number;
|
|
1254
|
+
nativeCoinOperationHashPrefix: string;
|
|
1255
|
+
}
|
|
1256
|
+
declare class KavaEVM extends Mainnet implements EthereumNetwork {
|
|
1257
|
+
name: string;
|
|
1258
|
+
family: CoinFamily;
|
|
1259
|
+
explorerUrl: string;
|
|
1260
|
+
accountExplorerUrl: string;
|
|
1261
|
+
chainId: number;
|
|
1262
|
+
nativeCoinOperationHashPrefix: string;
|
|
1263
|
+
}
|
|
1264
|
+
declare class LineaETH extends Mainnet implements EthereumNetwork {
|
|
1265
|
+
name: string;
|
|
1266
|
+
family: CoinFamily;
|
|
1267
|
+
explorerUrl: string;
|
|
1268
|
+
accountExplorerUrl: string;
|
|
1269
|
+
chainId: number;
|
|
1270
|
+
nativeCoinOperationHashPrefix: string;
|
|
1271
|
+
}
|
|
1272
|
+
declare class LineaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1273
|
+
name: string;
|
|
1274
|
+
family: CoinFamily;
|
|
1275
|
+
explorerUrl: string;
|
|
1276
|
+
accountExplorerUrl: string;
|
|
1277
|
+
chainId: number;
|
|
1278
|
+
nativeCoinOperationHashPrefix: string;
|
|
1279
|
+
}
|
|
1280
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1281
|
+
name: string;
|
|
1282
|
+
family: CoinFamily;
|
|
1283
|
+
explorerUrl: string;
|
|
1284
|
+
accountExplorerUrl: string;
|
|
1285
|
+
chainId: number;
|
|
1286
|
+
nativeCoinOperationHashPrefix: string;
|
|
1287
|
+
forwarderFactoryAddress: string;
|
|
1288
|
+
forwarderImplementationAddress: string;
|
|
1289
|
+
walletFactoryAddress: string;
|
|
1290
|
+
walletImplementationAddress: string;
|
|
1291
|
+
batcherContractAddress: string;
|
|
1292
|
+
}
|
|
1293
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1294
|
+
name: string;
|
|
1295
|
+
family: CoinFamily;
|
|
1296
|
+
explorerUrl: string;
|
|
1297
|
+
accountExplorerUrl: string;
|
|
1298
|
+
chainId: number;
|
|
1299
|
+
nativeCoinOperationHashPrefix: string;
|
|
1300
|
+
}
|
|
1301
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1302
|
+
name: string;
|
|
1303
|
+
family: CoinFamily;
|
|
1304
|
+
explorerUrl: string;
|
|
1305
|
+
accountExplorerUrl: string;
|
|
1306
|
+
chainId: number;
|
|
1307
|
+
nativeCoinOperationHashPrefix: string;
|
|
1308
|
+
walletFactoryAddress: string;
|
|
1309
|
+
batcherContractAddress: string;
|
|
1310
|
+
forwarderFactoryAddress: string;
|
|
1311
|
+
forwarderImplementationAddress: string;
|
|
1312
|
+
walletImplementationAddress: string;
|
|
1313
|
+
}
|
|
1314
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1315
|
+
name: string;
|
|
1316
|
+
family: CoinFamily;
|
|
1317
|
+
explorerUrl: string;
|
|
1318
|
+
accountExplorerUrl: string;
|
|
1319
|
+
chainId: number;
|
|
1320
|
+
nativeCoinOperationHashPrefix: string;
|
|
1321
|
+
}
|
|
1322
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1323
|
+
name: string;
|
|
1324
|
+
family: CoinFamily;
|
|
1325
|
+
explorerUrl: string;
|
|
1326
|
+
accountExplorerUrl: string;
|
|
1327
|
+
chainId: number;
|
|
1328
|
+
nativeCoinOperationHashPrefix: string;
|
|
1329
|
+
walletFactoryAddress: string;
|
|
1330
|
+
batcherContractAddress: string;
|
|
1331
|
+
forwarderFactoryAddress: string;
|
|
1332
|
+
forwarderImplementationAddress: string;
|
|
1333
|
+
walletImplementationAddress: string;
|
|
1334
|
+
}
|
|
1335
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1336
|
+
name: string;
|
|
1337
|
+
family: CoinFamily;
|
|
1338
|
+
explorerUrl: string;
|
|
1339
|
+
accountExplorerUrl: string;
|
|
1340
|
+
chainId: number;
|
|
1341
|
+
nativeCoinOperationHashPrefix: string;
|
|
1342
|
+
}
|
|
1343
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1344
|
+
name: string;
|
|
1345
|
+
family: CoinFamily;
|
|
1346
|
+
explorerUrl: string;
|
|
1347
|
+
accountExplorerUrl: string;
|
|
1348
|
+
chainId: number;
|
|
1349
|
+
nativeCoinOperationHashPrefix: string;
|
|
1350
|
+
walletFactoryAddress: string;
|
|
1351
|
+
batcherContractAddress: string;
|
|
1352
|
+
forwarderFactoryAddress: string;
|
|
1353
|
+
forwarderImplementationAddress: string;
|
|
1354
|
+
walletImplementationAddress: string;
|
|
1355
|
+
}
|
|
1356
|
+
declare class Og extends Mainnet implements EthereumNetwork {
|
|
1357
|
+
name: string;
|
|
1358
|
+
family: CoinFamily;
|
|
1359
|
+
explorerUrl: string;
|
|
1360
|
+
accountExplorerUrl: string;
|
|
1361
|
+
chainId: number;
|
|
1362
|
+
nativeCoinOperationHashPrefix: string;
|
|
1363
|
+
}
|
|
1364
|
+
declare class OgTestnet extends Testnet implements EthereumNetwork {
|
|
1365
|
+
name: string;
|
|
1366
|
+
family: CoinFamily;
|
|
1367
|
+
explorerUrl: string;
|
|
1368
|
+
accountExplorerUrl: string;
|
|
1369
|
+
chainId: number;
|
|
1370
|
+
nativeCoinOperationHashPrefix: string;
|
|
1371
|
+
}
|
|
1372
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1373
|
+
name: string;
|
|
1374
|
+
family: CoinFamily;
|
|
1375
|
+
explorerUrl: string;
|
|
1376
|
+
accountExplorerUrl: string;
|
|
1377
|
+
chainId: number;
|
|
1378
|
+
nativeCoinOperationHashPrefix: string;
|
|
1379
|
+
batcherContractAddress: string;
|
|
1380
|
+
forwarderFactoryAddress: string;
|
|
1381
|
+
forwarderImplementationAddress: string;
|
|
1382
|
+
}
|
|
1383
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1384
|
+
name: string;
|
|
1385
|
+
family: CoinFamily;
|
|
1386
|
+
explorerUrl: string;
|
|
1387
|
+
accountExplorerUrl: string;
|
|
1388
|
+
chainId: number;
|
|
1389
|
+
nativeCoinOperationHashPrefix: string;
|
|
1390
|
+
batcherContractAddress: string;
|
|
1391
|
+
forwarderFactoryAddress: string;
|
|
1392
|
+
forwarderImplementationAddress: string;
|
|
1393
|
+
}
|
|
1394
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1395
|
+
name: string;
|
|
1396
|
+
family: CoinFamily;
|
|
1397
|
+
explorerUrl: string;
|
|
1398
|
+
accountExplorerUrl: string;
|
|
1399
|
+
chainId: number;
|
|
1400
|
+
nativeCoinOperationHashPrefix: string;
|
|
1401
|
+
batcherContractAddress: string;
|
|
1402
|
+
forwarderFactoryAddress: string;
|
|
1403
|
+
forwarderImplementationAddress: string;
|
|
1404
|
+
}
|
|
1405
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1406
|
+
name: string;
|
|
1407
|
+
family: CoinFamily;
|
|
1408
|
+
explorerUrl: string;
|
|
1409
|
+
accountExplorerUrl: string;
|
|
1410
|
+
chainId: number;
|
|
1411
|
+
nativeCoinOperationHashPrefix: string;
|
|
1412
|
+
batcherContractAddress: string;
|
|
1413
|
+
forwarderFactoryAddress: string;
|
|
1414
|
+
forwarderImplementationAddress: string;
|
|
1415
|
+
}
|
|
1416
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1417
|
+
name: string;
|
|
1418
|
+
family: CoinFamily;
|
|
1419
|
+
explorerUrl: string;
|
|
1420
|
+
accountExplorerUrl: string;
|
|
1421
|
+
chainId: number;
|
|
1422
|
+
nativeCoinOperationHashPrefix: string;
|
|
1423
|
+
walletFactoryAddress: string;
|
|
1424
|
+
batcherContractAddress: string;
|
|
1425
|
+
forwarderFactoryAddress: string;
|
|
1426
|
+
forwarderImplementationAddress: string;
|
|
1427
|
+
walletImplementationAddress: string;
|
|
1428
|
+
}
|
|
1429
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1430
|
+
name: string;
|
|
1431
|
+
family: CoinFamily;
|
|
1432
|
+
explorerUrl: string;
|
|
1433
|
+
chainId: number;
|
|
1434
|
+
nativeCoinOperationHashPrefix: string;
|
|
1435
|
+
walletImplementationAddress: string;
|
|
1436
|
+
batcherContractAddress: string;
|
|
1437
|
+
forwarderFactoryAddress: string;
|
|
1438
|
+
forwarderImplementationAddress: string;
|
|
1439
|
+
}
|
|
1440
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1441
|
+
name: string;
|
|
1442
|
+
family: CoinFamily;
|
|
1443
|
+
explorerUrl: string;
|
|
1444
|
+
accountExplorerUrl: string;
|
|
1445
|
+
chainId: number;
|
|
1446
|
+
nativeCoinOperationHashPrefix: string;
|
|
1447
|
+
walletImplementationAddress: string;
|
|
1448
|
+
batcherContractAddress: string;
|
|
1449
|
+
forwarderFactoryAddress: string;
|
|
1450
|
+
forwarderImplementationAddress: string;
|
|
1451
|
+
}
|
|
1452
|
+
declare class WorldTestnet 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
|
+
walletImplementationAddress: string;
|
|
1463
|
+
}
|
|
1464
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1465
|
+
name: string;
|
|
1466
|
+
family: CoinFamily;
|
|
1467
|
+
explorerUrl: string;
|
|
1468
|
+
accountExplorerUrl: string;
|
|
1469
|
+
chainId: number;
|
|
1470
|
+
nativeCoinOperationHashPrefix: string;
|
|
1471
|
+
walletImplementationAddress: string;
|
|
1472
|
+
walletFactoryAddress: string;
|
|
1473
|
+
batcherContractAddress: string;
|
|
1474
|
+
forwarderFactoryAddress: string;
|
|
1475
|
+
forwarderImplementationAddress: string;
|
|
1476
|
+
}
|
|
1477
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1478
|
+
name: string;
|
|
1479
|
+
family: CoinFamily;
|
|
1480
|
+
explorerUrl: string;
|
|
1481
|
+
accountExplorerUrl: string;
|
|
1482
|
+
chainId: number;
|
|
1483
|
+
nativeCoinOperationHashPrefix: string;
|
|
1484
|
+
walletFactoryAddress: string;
|
|
1485
|
+
batcherContractAddress: string;
|
|
1486
|
+
forwarderFactoryAddress: string;
|
|
1487
|
+
forwarderImplementationAddress: string;
|
|
1488
|
+
walletImplementationAddress: string;
|
|
1489
|
+
}
|
|
1490
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1491
|
+
name: string;
|
|
1492
|
+
family: CoinFamily;
|
|
1493
|
+
explorerUrl: string;
|
|
1494
|
+
accountExplorerUrl: string;
|
|
1495
|
+
chainId: number;
|
|
1496
|
+
nativeCoinOperationHashPrefix: string;
|
|
1497
|
+
}
|
|
1498
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1499
|
+
name: string;
|
|
1500
|
+
family: CoinFamily;
|
|
1501
|
+
explorerUrl: string;
|
|
1502
|
+
accountExplorerUrl: string;
|
|
1503
|
+
chainId: number;
|
|
1504
|
+
nativeCoinOperationHashPrefix: string;
|
|
1505
|
+
walletFactoryAddress: string;
|
|
1506
|
+
batcherContractAddress: string;
|
|
1507
|
+
forwarderFactoryAddress: string;
|
|
1508
|
+
forwarderImplementationAddress: string;
|
|
1509
|
+
walletImplementationAddress: string;
|
|
1510
|
+
}
|
|
1511
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1512
|
+
name: string;
|
|
1513
|
+
family: CoinFamily;
|
|
1514
|
+
explorerUrl: string;
|
|
1515
|
+
accountExplorerUrl: string;
|
|
1516
|
+
chainId: number;
|
|
1517
|
+
nativeCoinOperationHashPrefix: string;
|
|
1518
|
+
walletFactoryAddress: string;
|
|
1519
|
+
batcherContractAddress: string;
|
|
1520
|
+
forwarderFactoryAddress: string;
|
|
1521
|
+
forwarderImplementationAddress: string;
|
|
1522
|
+
walletImplementationAddress: string;
|
|
1523
|
+
}
|
|
1524
|
+
declare class Somi extends Mainnet implements EthereumNetwork {
|
|
1525
|
+
name: string;
|
|
1526
|
+
family: CoinFamily;
|
|
1527
|
+
explorerUrl: string;
|
|
1528
|
+
chainId: number;
|
|
1529
|
+
nativeCoinOperationHashPrefix: string;
|
|
1530
|
+
walletImplementationAddress: string;
|
|
1531
|
+
walletFactoryAddress: string;
|
|
1532
|
+
forwarderImplementationAddress: string;
|
|
1533
|
+
forwarderFactoryAddress: string;
|
|
1534
|
+
batcherContractAddress: string;
|
|
1535
|
+
}
|
|
1536
|
+
export declare class FlareP extends Mainnet implements FlareNetwork {
|
|
1537
|
+
name: string;
|
|
1538
|
+
family: CoinFamily;
|
|
1539
|
+
explorerUrl: string;
|
|
1540
|
+
accountExplorerUrl: string;
|
|
1541
|
+
blockchainID: string;
|
|
1542
|
+
cChainBlockchainID: string;
|
|
1543
|
+
networkID: number;
|
|
1544
|
+
hrp: string;
|
|
1545
|
+
alias: string;
|
|
1546
|
+
vm: string;
|
|
1547
|
+
txFee: string;
|
|
1548
|
+
maxImportFee: string;
|
|
1549
|
+
createSubnetTx: string;
|
|
1550
|
+
createChainTx: string;
|
|
1551
|
+
creationTxFee: string;
|
|
1552
|
+
minConsumption: string;
|
|
1553
|
+
maxConsumption: string;
|
|
1554
|
+
maxSupply: string;
|
|
1555
|
+
minStake: string;
|
|
1556
|
+
minStakeDuration: string;
|
|
1557
|
+
maxStakeDuration: string;
|
|
1558
|
+
minDelegationStake: string;
|
|
1559
|
+
minDelegationFee: string;
|
|
1560
|
+
}
|
|
1561
|
+
export declare class FlarePTestnet extends Testnet implements FlareNetwork {
|
|
1562
|
+
name: string;
|
|
1563
|
+
family: CoinFamily;
|
|
1564
|
+
explorerUrl: string;
|
|
1565
|
+
accountExplorerUrl: string;
|
|
1566
|
+
blockchainID: string;
|
|
1567
|
+
cChainBlockchainID: string;
|
|
1568
|
+
networkID: number;
|
|
1569
|
+
hrp: string;
|
|
1570
|
+
alias: string;
|
|
1571
|
+
vm: string;
|
|
1572
|
+
txFee: string;
|
|
1573
|
+
maxImportFee: string;
|
|
1574
|
+
createSubnetTx: string;
|
|
1575
|
+
createChainTx: string;
|
|
1576
|
+
creationTxFee: string;
|
|
1577
|
+
minConsumption: string;
|
|
1578
|
+
maxConsumption: string;
|
|
1579
|
+
maxSupply: string;
|
|
1580
|
+
minStake: string;
|
|
1581
|
+
minStakeDuration: string;
|
|
1582
|
+
maxStakeDuration: string;
|
|
1583
|
+
minDelegationStake: string;
|
|
1584
|
+
minDelegationFee: string;
|
|
1585
|
+
}
|
|
1586
|
+
export declare class Flare extends Mainnet implements FlareNetwork, EthereumNetwork {
|
|
1587
|
+
name: string;
|
|
1588
|
+
family: CoinFamily;
|
|
1589
|
+
explorerUrl: string;
|
|
1590
|
+
accountExplorerUrl: string;
|
|
1591
|
+
chainId: number;
|
|
1592
|
+
nativeCoinOperationHashPrefix: string;
|
|
1593
|
+
batcherContractAddress: string;
|
|
1594
|
+
forwarderFactoryAddress: string;
|
|
1595
|
+
forwarderImplementationAddress: string;
|
|
1596
|
+
}
|
|
1597
|
+
export declare class FlareTestnet extends Testnet implements FlareNetwork, EthereumNetwork {
|
|
1598
|
+
name: string;
|
|
1599
|
+
family: CoinFamily;
|
|
1600
|
+
explorerUrl: string;
|
|
1601
|
+
accountExplorerUrl: string;
|
|
1602
|
+
chainId: number;
|
|
1603
|
+
nativeCoinOperationHashPrefix: string;
|
|
1604
|
+
batcherContractAddress: string;
|
|
1605
|
+
forwarderFactoryAddress: string;
|
|
1606
|
+
forwarderImplementationAddress: string;
|
|
1607
|
+
}
|
|
1608
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1609
|
+
name: string;
|
|
1610
|
+
family: CoinFamily;
|
|
1611
|
+
explorerUrl: string;
|
|
1612
|
+
accountExplorerUrl: string;
|
|
1613
|
+
chainId: number;
|
|
1614
|
+
nativeCoinOperationHashPrefix: string;
|
|
1615
|
+
batcherContractAddress: string;
|
|
1616
|
+
forwarderFactoryAddress: string;
|
|
1617
|
+
forwarderImplementationAddress: string;
|
|
1618
|
+
}
|
|
1619
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1620
|
+
name: string;
|
|
1621
|
+
family: CoinFamily;
|
|
1622
|
+
explorerUrl: string;
|
|
1623
|
+
accountExplorerUrl: string;
|
|
1624
|
+
chainId: number;
|
|
1625
|
+
nativeCoinOperationHashPrefix: string;
|
|
1626
|
+
batcherContractAddress: string;
|
|
1627
|
+
forwarderFactoryAddress: string;
|
|
1628
|
+
forwarderImplementationAddress: string;
|
|
1629
|
+
}
|
|
1630
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1631
|
+
name: string;
|
|
1632
|
+
family: CoinFamily;
|
|
1633
|
+
explorerUrl: string;
|
|
1634
|
+
accountExplorerUrl: string;
|
|
1635
|
+
chainId: number;
|
|
1636
|
+
nativeCoinOperationHashPrefix: string;
|
|
1637
|
+
tokenOperationHashPrefix: string;
|
|
1638
|
+
forwarderFactoryAddress: string;
|
|
1639
|
+
forwarderImplementationAddress: string;
|
|
1640
|
+
walletFactoryAddress: string;
|
|
1641
|
+
walletImplementationAddress: string;
|
|
1642
|
+
}
|
|
1643
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1644
|
+
name: string;
|
|
1645
|
+
family: CoinFamily;
|
|
1646
|
+
explorerUrl: string;
|
|
1647
|
+
accountExplorerUrl: string;
|
|
1648
|
+
chainId: number;
|
|
1649
|
+
nativeCoinOperationHashPrefix: string;
|
|
1650
|
+
tokenOperationHashPrefix: string;
|
|
1651
|
+
forwarderFactoryAddress: string;
|
|
1652
|
+
forwarderImplementationAddress: string;
|
|
1653
|
+
walletFactoryAddress: string;
|
|
1654
|
+
walletImplementationAddress: string;
|
|
1655
|
+
}
|
|
1656
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1657
|
+
name: string;
|
|
1658
|
+
family: CoinFamily;
|
|
1659
|
+
explorerUrl: string;
|
|
1660
|
+
specName: string;
|
|
1661
|
+
genesisHash: string;
|
|
1662
|
+
specVersion: number;
|
|
1663
|
+
chainName: string;
|
|
1664
|
+
txVersion: number;
|
|
1665
|
+
}
|
|
1666
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1667
|
+
name: string;
|
|
1668
|
+
family: CoinFamily;
|
|
1669
|
+
explorerUrl: string;
|
|
1670
|
+
specName: SubstrateSpecNameType;
|
|
1671
|
+
genesisHash: string;
|
|
1672
|
+
specVersion: number;
|
|
1673
|
+
chainName: string;
|
|
1674
|
+
txVersion: number;
|
|
1675
|
+
}
|
|
1676
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1677
|
+
name: string;
|
|
1678
|
+
family: CoinFamily;
|
|
1679
|
+
explorerUrl: string;
|
|
1680
|
+
accountExplorerUrl: string;
|
|
1681
|
+
chainId: number;
|
|
1682
|
+
forwarderFactoryAddress: string;
|
|
1683
|
+
forwarderImplementationAddress: string;
|
|
1684
|
+
}
|
|
1685
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1686
|
+
name: string;
|
|
1687
|
+
family: CoinFamily;
|
|
1688
|
+
explorerUrl: string;
|
|
1689
|
+
accountExplorerUrl: string;
|
|
1690
|
+
chainId: number;
|
|
1691
|
+
forwarderFactoryAddress: string;
|
|
1692
|
+
forwarderImplementationAddress: string;
|
|
1693
|
+
}
|
|
1694
|
+
declare class Iota extends Mainnet implements AccountNetwork {
|
|
1695
|
+
name: string;
|
|
1696
|
+
family: CoinFamily;
|
|
1697
|
+
explorerUrl: string;
|
|
1698
|
+
}
|
|
1699
|
+
declare class IotaTestnet extends Testnet implements AccountNetwork {
|
|
1700
|
+
name: string;
|
|
1701
|
+
family: CoinFamily;
|
|
1702
|
+
explorerUrl: string;
|
|
1703
|
+
}
|
|
1704
|
+
declare class Flow extends Mainnet implements EthereumNetwork {
|
|
1705
|
+
name: string;
|
|
1706
|
+
family: CoinFamily;
|
|
1707
|
+
explorerUrl: string;
|
|
1708
|
+
accountExplorerUrl: string;
|
|
1709
|
+
chainId: number;
|
|
1710
|
+
nativeCoinOperationHashPrefix: string;
|
|
1711
|
+
}
|
|
1712
|
+
declare class FlowTestnet extends Testnet implements EthereumNetwork {
|
|
1713
|
+
name: string;
|
|
1714
|
+
family: CoinFamily;
|
|
1715
|
+
explorerUrl: string;
|
|
1716
|
+
accountExplorerUrl: string;
|
|
1717
|
+
chainId: number;
|
|
1718
|
+
nativeCoinOperationHashPrefix: string;
|
|
1719
|
+
}
|
|
1720
|
+
declare class MegaETH extends Mainnet implements EthereumNetwork {
|
|
1721
|
+
name: string;
|
|
1722
|
+
family: CoinFamily;
|
|
1723
|
+
explorerUrl: string;
|
|
1724
|
+
accountExplorerUrl: string;
|
|
1725
|
+
chainId: number;
|
|
1726
|
+
nativeCoinOperationHashPrefix: string;
|
|
1727
|
+
}
|
|
1728
|
+
declare class MegaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1729
|
+
name: string;
|
|
1730
|
+
family: CoinFamily;
|
|
1731
|
+
explorerUrl: string;
|
|
1732
|
+
accountExplorerUrl: string;
|
|
1733
|
+
chainId: number;
|
|
1734
|
+
nativeCoinOperationHashPrefix: string;
|
|
1735
|
+
}
|
|
1736
|
+
declare class Plume extends Mainnet implements EthereumNetwork {
|
|
1737
|
+
name: string;
|
|
1738
|
+
family: CoinFamily;
|
|
1739
|
+
explorerUrl: string;
|
|
1740
|
+
accountExplorerUrl: string;
|
|
1741
|
+
chainId: number;
|
|
1742
|
+
nativeCoinOperationHashPrefix: string;
|
|
1743
|
+
}
|
|
1744
|
+
declare class PlumeTestnet extends Testnet implements EthereumNetwork {
|
|
1745
|
+
name: string;
|
|
1746
|
+
family: CoinFamily;
|
|
1747
|
+
explorerUrl: string;
|
|
1748
|
+
accountExplorerUrl: string;
|
|
1749
|
+
chainId: number;
|
|
1750
|
+
nativeCoinOperationHashPrefix: string;
|
|
672
1751
|
}
|
|
673
1752
|
export declare const Networks: {
|
|
674
1753
|
main: {
|
|
675
1754
|
ada: Readonly<Ada>;
|
|
676
1755
|
algorand: Readonly<Algorand>;
|
|
1756
|
+
apechain: Readonly<ApeChain>;
|
|
1757
|
+
apt: Readonly<Apt>;
|
|
1758
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1759
|
+
asi: Readonly<Asi>;
|
|
677
1760
|
atom: Readonly<Atom>;
|
|
678
1761
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1762
|
avalancheP: Readonly<AvalancheP>;
|
|
1763
|
+
baby: Readonly<Baby>;
|
|
1764
|
+
basechain: Readonly<BaseChain>;
|
|
680
1765
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1766
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1767
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1768
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1769
|
+
bera: Readonly<Berachain>;
|
|
684
1770
|
bld: Readonly<Bld>;
|
|
685
1771
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1772
|
casper: Readonly<Casper>;
|
|
687
1773
|
celo: Readonly<Celo>;
|
|
1774
|
+
coredao: Readonly<Coredao>;
|
|
1775
|
+
coreum: Readonly<Coreum>;
|
|
1776
|
+
cronos: Readonly<Cronos>;
|
|
688
1777
|
dash: Readonly<Dash>;
|
|
689
1778
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1779
|
dot: Readonly<Polkadot>;
|
|
@@ -695,73 +1784,168 @@ export declare const Networks: {
|
|
|
695
1784
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1785
|
ethereumW: Readonly<EthereumW>;
|
|
697
1786
|
fiat: Readonly<Fiat>;
|
|
1787
|
+
fetchai: Readonly<FetchAi>;
|
|
1788
|
+
flow: Readonly<Flow>;
|
|
1789
|
+
flr: Readonly<Flare>;
|
|
1790
|
+
flrP: Readonly<FlareP>;
|
|
698
1791
|
hash: Readonly<Hash>;
|
|
699
1792
|
hedera: Readonly<Hedera>;
|
|
1793
|
+
icp: Readonly<Icp>;
|
|
1794
|
+
ip: Readonly<IP>;
|
|
1795
|
+
initia: Readonly<Initia>;
|
|
1796
|
+
iota: Readonly<Iota>;
|
|
700
1797
|
injective: Readonly<Injective>;
|
|
1798
|
+
irys: Readonly<Irys>;
|
|
1799
|
+
islm: Readonly<Islm>;
|
|
1800
|
+
kaia: Readonly<Kaia>;
|
|
1801
|
+
kava: Readonly<Kava>;
|
|
1802
|
+
kavaevm: Readonly<KavaEVM>;
|
|
1803
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1804
|
litecoin: Readonly<Litecoin>;
|
|
1805
|
+
megaeth: Readonly<MegaETH>;
|
|
1806
|
+
mon: Readonly<Monad>;
|
|
1807
|
+
mantra: Readonly<Mantra>;
|
|
1808
|
+
plume: Readonly<Plume>;
|
|
702
1809
|
polygon: Readonly<Polygon>;
|
|
1810
|
+
polyx: Readonly<Polymesh>;
|
|
1811
|
+
phrs: Readonly<Pharos>;
|
|
1812
|
+
ctc: Readonly<Creditcoin>;
|
|
1813
|
+
hypeevm: Readonly<HypeEVM>;
|
|
1814
|
+
lineaeth: Readonly<LineaETH>;
|
|
1815
|
+
oas: Readonly<Oas>;
|
|
1816
|
+
og: Readonly<Og>;
|
|
703
1817
|
ofc: Readonly<Ofc>;
|
|
1818
|
+
optimism: Readonly<Optimism>;
|
|
704
1819
|
osmo: Readonly<Osmo>;
|
|
705
1820
|
rbtc: Readonly<Rbtc>;
|
|
1821
|
+
rune: Readonly<Rune>;
|
|
706
1822
|
stellar: Readonly<Stellar>;
|
|
707
1823
|
sei: Readonly<Sei>;
|
|
1824
|
+
seievm: Readonly<SeiEvm>;
|
|
1825
|
+
sgb: Readonly<Songbird>;
|
|
708
1826
|
sol: Readonly<Sol>;
|
|
1827
|
+
sonic: Readonly<Sonic>;
|
|
709
1828
|
sui: Readonly<Sui>;
|
|
710
1829
|
near: Readonly<Near>;
|
|
711
1830
|
stx: Readonly<Stx>;
|
|
1831
|
+
somi: Readonly<Somi>;
|
|
1832
|
+
soneium: Readonly<Soneium>;
|
|
712
1833
|
susd: Readonly<SUSD>;
|
|
1834
|
+
tao: Readonly<Bittensor>;
|
|
713
1835
|
tia: Readonly<Tia>;
|
|
1836
|
+
ton: Readonly<Ton>;
|
|
714
1837
|
trx: Readonly<Trx>;
|
|
1838
|
+
vet: Readonly<Vet>;
|
|
1839
|
+
wemix: Readonly<Wemix>;
|
|
1840
|
+
world: Readonly<World>;
|
|
1841
|
+
xdc: Readonly<Xdc>;
|
|
1842
|
+
xpl: Readonly<Plasma>;
|
|
715
1843
|
xrp: Readonly<Xrp>;
|
|
716
1844
|
xtz: Readonly<Xtz>;
|
|
717
1845
|
zCash: Readonly<ZCash>;
|
|
718
1846
|
zeta: Readonly<Zeta>;
|
|
1847
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1848
|
};
|
|
720
1849
|
test: {
|
|
721
1850
|
ada: Readonly<AdaTestnet>;
|
|
722
1851
|
algorand: Readonly<AlgorandTestnet>;
|
|
1852
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1853
|
+
apt: Readonly<AptTestnet>;
|
|
1854
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1855
|
+
asi: Readonly<AsiTestnet>;
|
|
723
1856
|
atom: Readonly<AtomTestnet>;
|
|
724
1857
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1858
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1859
|
+
baby: Readonly<BabyTestnet>;
|
|
1860
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1861
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1862
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1863
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1864
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1865
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1866
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1867
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1868
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1869
|
bld: Readonly<BldTestnet>;
|
|
731
1870
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1871
|
casper: Readonly<CasperTestnet>;
|
|
1872
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1873
|
celo: Readonly<CeloTestnet>;
|
|
1874
|
+
cronos: Readonly<CronosTestnet>;
|
|
734
1875
|
dash: Readonly<DashTestnet>;
|
|
735
1876
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
736
|
-
dot: Readonly<
|
|
1877
|
+
dot: Readonly<WestendAssetHub>;
|
|
737
1878
|
eCash: Readonly<ECashTestnet>;
|
|
738
1879
|
eos: Readonly<EosTestnet>;
|
|
739
1880
|
fiat: Readonly<FiatTestnet>;
|
|
1881
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1882
|
+
flow: Readonly<FlowTestnet>;
|
|
1883
|
+
flr: Readonly<FlareTestnet>;
|
|
1884
|
+
flrP: Readonly<FlarePTestnet>;
|
|
1885
|
+
mon: Readonly<MonadTestnet>;
|
|
1886
|
+
megaeth: Readonly<MegaETHTestnet>;
|
|
740
1887
|
pyrmont: Readonly<Pyrmont>;
|
|
1888
|
+
plume: Readonly<PlumeTestnet>;
|
|
741
1889
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1890
|
hash: Readonly<HashTestnet>;
|
|
743
1891
|
hedera: Readonly<HederaTestnet>;
|
|
1892
|
+
icp: Readonly<IcpTestnet>;
|
|
1893
|
+
ip: Readonly<IPTestnet>;
|
|
1894
|
+
initia: Readonly<InitiaTestnet>;
|
|
744
1895
|
injective: Readonly<InjectiveTestnet>;
|
|
1896
|
+
iota: Readonly<IotaTestnet>;
|
|
1897
|
+
irys: Readonly<IrysTestnet>;
|
|
1898
|
+
islm: Readonly<IslmTestnet>;
|
|
1899
|
+
kava: Readonly<KavaTestnet>;
|
|
1900
|
+
kavaevm: Readonly<KavaEVMTestnet>;
|
|
745
1901
|
kovan: Readonly<Kovan>;
|
|
746
1902
|
goerli: Readonly<Goerli>;
|
|
1903
|
+
holesky: Readonly<Holesky>;
|
|
1904
|
+
hoodi: Readonly<Hoodi>;
|
|
1905
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1906
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1907
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1908
|
polygon: Readonly<PolygonTestnet>;
|
|
1909
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1910
|
+
phrs: Readonly<PharosTestnet>;
|
|
1911
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
1912
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
1913
|
+
lineaeth: Readonly<LineaETHTestnet>;
|
|
1914
|
+
oas: Readonly<OasTestnet>;
|
|
1915
|
+
og: Readonly<OgTestnet>;
|
|
749
1916
|
ofc: Readonly<OfcTestnet>;
|
|
1917
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1918
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1919
|
rbtc: Readonly<RbtcTestnet>;
|
|
1920
|
+
rune: Readonly<RuneTestNet>;
|
|
1921
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1922
|
stellar: Readonly<StellarTestnet>;
|
|
753
1923
|
sei: Readonly<SeiTestnet>;
|
|
1924
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
754
1925
|
sol: Readonly<SolTestnet>;
|
|
755
1926
|
sui: Readonly<SuiTestnet>;
|
|
756
1927
|
near: Readonly<NearTestnet>;
|
|
757
1928
|
stx: Readonly<StxTestnet>;
|
|
1929
|
+
stt: Readonly<SomniaTestnet>;
|
|
1930
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
1931
|
+
sonic: Readonly<SonicTestnet>;
|
|
1932
|
+
kaia: Readonly<KaiaTestnet>;
|
|
758
1933
|
susd: Readonly<SUSDTestnet>;
|
|
1934
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1935
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1936
|
tia: Readonly<TiaTestnet>;
|
|
1937
|
+
ton: Readonly<TonTestnet>;
|
|
760
1938
|
trx: Readonly<TrxTestnet>;
|
|
1939
|
+
vet: Readonly<VetTestnet>;
|
|
1940
|
+
wemix: Readonly<WemixTestnet>;
|
|
1941
|
+
world: Readonly<WorldTestnet>;
|
|
1942
|
+
xdc: Readonly<XdcTestnet>;
|
|
1943
|
+
xpl: Readonly<PlasmaTestnet>;
|
|
761
1944
|
xrp: Readonly<XrpTestnet>;
|
|
762
1945
|
xtz: Readonly<XtzTestnet>;
|
|
763
1946
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1947
|
zeta: Readonly<ZetaTestnet>;
|
|
1948
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1949
|
};
|
|
766
1950
|
};
|
|
767
1951
|
export {};
|