@bitgo-beta/statics 15.1.1-beta.12 → 15.1.1-beta.1200
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 +2 -2
- package/CHANGELOG.md +3318 -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 +9 -3
- package/dist/src/allCoinsAndTokens.d.ts +2 -0
- package/dist/src/allCoinsAndTokens.d.ts.map +1 -0
- package/dist/src/allCoinsAndTokens.js +796 -0
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +10 -3
- package/dist/src/base.d.ts +1864 -34
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1945 -50
- package/dist/src/coinFeatures.d.ts +103 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +621 -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 +123 -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 +2 -0
- package/dist/src/coins/botTokens.d.ts.map +1 -0
- package/dist/src/coins/botTokens.js +5 -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 +171 -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 +1739 -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 +691 -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 +1535 -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 +154 -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 +390 -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 +319 -1413
- 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 +1260 -4
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1602 -43
- 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 +232 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +863 -244
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +85 -3
- package/dist/tsconfig.tsbuildinfo +1 -2744
- package/package.json +2 -2
- package/dist/resources/dot/index.d.ts +0 -3
- package/dist/resources/dot/index.d.ts.map +0 -1
- package/dist/resources/dot/index.js +0 -15
- package/dist/resources/dot/mainnet.d.ts +0 -2
- package/dist/resources/dot/mainnet.d.ts.map +0 -1
- package/dist/resources/dot/mainnet.js +0 -5
- package/dist/resources/dot/westend.d.ts +0 -2
- package/dist/resources/dot/westend.d.ts.map +0 -1
- package/dist/resources/dot/westend.js +0 -5
- package/resources/dot/index.ts +0 -2
- package/resources/dot/mainnet.ts +0 -2
- package/resources/dot/westend.ts +0 -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,20 +89,30 @@ 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;
|
|
96
|
+
readonly blockExplorerUrl?: string;
|
|
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[];
|
|
46
105
|
}
|
|
47
106
|
/**
|
|
48
107
|
* Specification name type of the chain. Used in setting up the registry
|
|
49
108
|
*/
|
|
50
|
-
export
|
|
109
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
110
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet' | 'polymesh_mainnet';
|
|
51
111
|
export interface DotNetwork extends AccountNetwork {
|
|
52
112
|
readonly specName: PolkadotSpecNameType;
|
|
53
113
|
readonly genesisHash: string;
|
|
54
114
|
readonly specVersion: number;
|
|
55
115
|
readonly chainName: string;
|
|
56
|
-
readonly metadataRpc: `0x${string}`;
|
|
57
116
|
readonly txVersion: number;
|
|
58
117
|
}
|
|
59
118
|
export interface EthereumNetwork extends AccountNetwork {
|
|
@@ -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;
|
|
@@ -280,7 +442,6 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
280
442
|
genesisHash: string;
|
|
281
443
|
specVersion: number;
|
|
282
444
|
chainName: string;
|
|
283
|
-
metadataRpc: `0x${string}`;
|
|
284
445
|
txVersion: number;
|
|
285
446
|
}
|
|
286
447
|
declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
@@ -291,7 +452,6 @@ declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
|
291
452
|
genesisHash: string;
|
|
292
453
|
specVersion: number;
|
|
293
454
|
chainName: string;
|
|
294
|
-
metadataRpc: `0x${string}`;
|
|
295
455
|
txVersion: number;
|
|
296
456
|
}
|
|
297
457
|
declare class Celo extends Mainnet implements EthereumNetwork {
|
|
@@ -300,6 +460,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
300
460
|
explorerUrl: string;
|
|
301
461
|
accountExplorerUrl: string;
|
|
302
462
|
chainId: number;
|
|
463
|
+
nativeCoinOperationHashPrefix: string;
|
|
464
|
+
tokenOperationHashPrefix: string;
|
|
303
465
|
}
|
|
304
466
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
305
467
|
name: string;
|
|
@@ -307,6 +469,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
307
469
|
explorerUrl: string;
|
|
308
470
|
accountExplorerUrl: string;
|
|
309
471
|
chainId: number;
|
|
472
|
+
nativeCoinOperationHashPrefix: string;
|
|
473
|
+
tokenOperationHashPrefix: string;
|
|
310
474
|
}
|
|
311
475
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
312
476
|
name: string;
|
|
@@ -325,10 +489,15 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
325
489
|
family: CoinFamily;
|
|
326
490
|
explorerUrl: string;
|
|
327
491
|
accountExplorerUrl: string;
|
|
492
|
+
blockExplorerUrl: string;
|
|
328
493
|
chainId: number;
|
|
329
494
|
batcherContractAddress: string;
|
|
330
495
|
forwarderFactoryAddress: string;
|
|
331
496
|
forwarderImplementationAddress: string;
|
|
497
|
+
nativeCoinOperationHashPrefix: string;
|
|
498
|
+
tokenOperationHashPrefix: string;
|
|
499
|
+
walletV4ForwarderFactoryAddress: string;
|
|
500
|
+
walletV4ForwarderImplementationAddress: string;
|
|
332
501
|
}
|
|
333
502
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
334
503
|
name: string;
|
|
@@ -345,6 +514,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
345
514
|
batcherContractAddress: string;
|
|
346
515
|
forwarderFactoryAddress: string;
|
|
347
516
|
forwarderImplementationAddress: string;
|
|
517
|
+
nativeCoinOperationHashPrefix: string;
|
|
518
|
+
tokenOperationHashPrefix: string;
|
|
348
519
|
}
|
|
349
520
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
350
521
|
name: string;
|
|
@@ -361,16 +532,51 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
361
532
|
batcherContractAddress: string;
|
|
362
533
|
forwarderFactoryAddress: string;
|
|
363
534
|
forwarderImplementationAddress: string;
|
|
535
|
+
nativeCoinOperationHashPrefix: string;
|
|
536
|
+
tokenOperationHashPrefix: string;
|
|
364
537
|
}
|
|
365
538
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
366
539
|
name: string;
|
|
367
540
|
family: CoinFamily;
|
|
368
541
|
explorerUrl: string;
|
|
369
542
|
accountExplorerUrl: string;
|
|
543
|
+
blockExplorerUrl: string;
|
|
544
|
+
chainId: number;
|
|
545
|
+
batcherContractAddress: string;
|
|
546
|
+
forwarderFactoryAddress: string;
|
|
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;
|
|
370
572
|
chainId: number;
|
|
371
573
|
batcherContractAddress: string;
|
|
372
574
|
forwarderFactoryAddress: string;
|
|
373
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;
|
|
@@ -482,6 +696,198 @@ declare class AtomTestnet extends Testnet implements AccountNetwork {
|
|
|
482
696
|
family: CoinFamily;
|
|
483
697
|
explorerUrl: string;
|
|
484
698
|
}
|
|
699
|
+
declare class Osmo extends Mainnet implements AccountNetwork {
|
|
700
|
+
name: string;
|
|
701
|
+
family: CoinFamily;
|
|
702
|
+
explorerUrl: string;
|
|
703
|
+
}
|
|
704
|
+
declare class OsmoTestnet extends Testnet implements AccountNetwork {
|
|
705
|
+
name: string;
|
|
706
|
+
family: CoinFamily;
|
|
707
|
+
explorerUrl: string;
|
|
708
|
+
}
|
|
709
|
+
declare class Tia extends Mainnet implements AccountNetwork {
|
|
710
|
+
name: string;
|
|
711
|
+
family: CoinFamily;
|
|
712
|
+
explorerUrl: string;
|
|
713
|
+
}
|
|
714
|
+
declare class TiaTestnet extends Testnet implements AccountNetwork {
|
|
715
|
+
name: string;
|
|
716
|
+
family: CoinFamily;
|
|
717
|
+
explorerUrl: string;
|
|
718
|
+
}
|
|
719
|
+
declare class Hash extends Mainnet implements AccountNetwork {
|
|
720
|
+
name: string;
|
|
721
|
+
family: CoinFamily;
|
|
722
|
+
explorerUrl: string;
|
|
723
|
+
}
|
|
724
|
+
declare class HashTestnet extends Testnet implements AccountNetwork {
|
|
725
|
+
name: string;
|
|
726
|
+
family: CoinFamily;
|
|
727
|
+
explorerUrl: string;
|
|
728
|
+
}
|
|
729
|
+
declare class Bld extends Mainnet implements AccountNetwork {
|
|
730
|
+
name: string;
|
|
731
|
+
family: CoinFamily;
|
|
732
|
+
explorerUrl: string;
|
|
733
|
+
}
|
|
734
|
+
declare class BldTestnet extends Testnet implements AccountNetwork {
|
|
735
|
+
name: string;
|
|
736
|
+
family: CoinFamily;
|
|
737
|
+
explorerUrl: string;
|
|
738
|
+
}
|
|
739
|
+
declare class Sei extends Mainnet implements AccountNetwork {
|
|
740
|
+
name: string;
|
|
741
|
+
family: CoinFamily;
|
|
742
|
+
explorerUrl: string;
|
|
743
|
+
}
|
|
744
|
+
declare class SeiTestnet extends Testnet implements AccountNetwork {
|
|
745
|
+
name: string;
|
|
746
|
+
family: CoinFamily;
|
|
747
|
+
explorerUrl: string;
|
|
748
|
+
}
|
|
749
|
+
declare class Zeta extends Mainnet implements AccountNetwork {
|
|
750
|
+
name: string;
|
|
751
|
+
family: CoinFamily;
|
|
752
|
+
explorerUrl: string;
|
|
753
|
+
}
|
|
754
|
+
declare class ZetaTestnet extends Testnet implements AccountNetwork {
|
|
755
|
+
name: string;
|
|
756
|
+
family: CoinFamily;
|
|
757
|
+
explorerUrl: string;
|
|
758
|
+
}
|
|
759
|
+
declare class Injective extends Mainnet implements AccountNetwork {
|
|
760
|
+
name: string;
|
|
761
|
+
family: CoinFamily;
|
|
762
|
+
explorerUrl: string;
|
|
763
|
+
}
|
|
764
|
+
declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
765
|
+
name: string;
|
|
766
|
+
family: CoinFamily;
|
|
767
|
+
explorerUrl: string;
|
|
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
|
+
}
|
|
485
891
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
486
892
|
name: string;
|
|
487
893
|
family: CoinFamily;
|
|
@@ -516,9 +922,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
516
922
|
family: CoinFamily;
|
|
517
923
|
explorerUrl: undefined;
|
|
518
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
|
+
}
|
|
519
940
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
520
941
|
name: string;
|
|
521
942
|
family: CoinFamily;
|
|
943
|
+
accountExplorerUrl: string;
|
|
522
944
|
explorerUrl: string;
|
|
523
945
|
maxFeeLimit: string;
|
|
524
946
|
contractCallFeeLimit: string;
|
|
@@ -526,6 +948,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
526
948
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
527
949
|
name: string;
|
|
528
950
|
family: CoinFamily;
|
|
951
|
+
accountExplorerUrl: string;
|
|
529
952
|
explorerUrl: string;
|
|
530
953
|
maxFeeLimit: string;
|
|
531
954
|
contractCallFeeLimit: string;
|
|
@@ -589,6 +1012,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
589
1012
|
walletFactoryAddress: string;
|
|
590
1013
|
walletImplementationAddress: string;
|
|
591
1014
|
batcherContractAddress: string;
|
|
1015
|
+
nativeCoinOperationHashPrefix: string;
|
|
1016
|
+
tokenOperationHashPrefix: string;
|
|
592
1017
|
}
|
|
593
1018
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
594
1019
|
name: string;
|
|
@@ -601,21 +1026,744 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
601
1026
|
walletFactoryAddress: string;
|
|
602
1027
|
walletImplementationAddress: string;
|
|
603
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
|
+
}
|
|
1203
|
+
declare class Creditcoin extends Mainnet implements EthereumNetwork {
|
|
1204
|
+
name: string;
|
|
1205
|
+
family: CoinFamily;
|
|
1206
|
+
explorerUrl: string;
|
|
1207
|
+
accountExplorerUrl: string;
|
|
1208
|
+
chainId: number;
|
|
1209
|
+
nativeCoinOperationHashPrefix: string;
|
|
1210
|
+
}
|
|
1211
|
+
declare class Plasma extends Mainnet implements EthereumNetwork {
|
|
1212
|
+
name: string;
|
|
1213
|
+
family: CoinFamily;
|
|
1214
|
+
explorerUrl: string;
|
|
1215
|
+
accountExplorerUrl: string;
|
|
1216
|
+
chainId: number;
|
|
1217
|
+
nativeCoinOperationHashPrefix: string;
|
|
1218
|
+
}
|
|
1219
|
+
declare class PlasmaTestnet extends Testnet implements EthereumNetwork {
|
|
1220
|
+
name: string;
|
|
1221
|
+
family: CoinFamily;
|
|
1222
|
+
explorerUrl: string;
|
|
1223
|
+
accountExplorerUrl: string;
|
|
1224
|
+
chainId: number;
|
|
1225
|
+
nativeCoinOperationHashPrefix: string;
|
|
1226
|
+
}
|
|
1227
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1228
|
+
name: string;
|
|
1229
|
+
family: CoinFamily;
|
|
1230
|
+
explorerUrl: string;
|
|
1231
|
+
accountExplorerUrl: string;
|
|
1232
|
+
chainId: number;
|
|
1233
|
+
nativeCoinOperationHashPrefix: string;
|
|
1234
|
+
}
|
|
1235
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1236
|
+
name: string;
|
|
1237
|
+
family: CoinFamily;
|
|
1238
|
+
explorerUrl: string;
|
|
1239
|
+
accountExplorerUrl: string;
|
|
1240
|
+
chainId: number;
|
|
1241
|
+
nativeCoinOperationHashPrefix: string;
|
|
1242
|
+
}
|
|
1243
|
+
declare class KavaEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1244
|
+
name: string;
|
|
1245
|
+
family: CoinFamily;
|
|
1246
|
+
explorerUrl: string;
|
|
1247
|
+
accountExplorerUrl: string;
|
|
1248
|
+
chainId: number;
|
|
1249
|
+
nativeCoinOperationHashPrefix: string;
|
|
1250
|
+
}
|
|
1251
|
+
declare class KavaEVM extends Mainnet implements EthereumNetwork {
|
|
1252
|
+
name: string;
|
|
1253
|
+
family: CoinFamily;
|
|
1254
|
+
explorerUrl: string;
|
|
1255
|
+
accountExplorerUrl: string;
|
|
1256
|
+
chainId: number;
|
|
1257
|
+
nativeCoinOperationHashPrefix: string;
|
|
1258
|
+
}
|
|
1259
|
+
declare class LineaETH extends Mainnet implements EthereumNetwork {
|
|
1260
|
+
name: string;
|
|
1261
|
+
family: CoinFamily;
|
|
1262
|
+
explorerUrl: string;
|
|
1263
|
+
accountExplorerUrl: string;
|
|
1264
|
+
chainId: number;
|
|
1265
|
+
nativeCoinOperationHashPrefix: string;
|
|
1266
|
+
}
|
|
1267
|
+
declare class LineaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1268
|
+
name: string;
|
|
1269
|
+
family: CoinFamily;
|
|
1270
|
+
explorerUrl: string;
|
|
1271
|
+
accountExplorerUrl: string;
|
|
1272
|
+
chainId: number;
|
|
1273
|
+
nativeCoinOperationHashPrefix: string;
|
|
1274
|
+
}
|
|
1275
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1276
|
+
name: string;
|
|
1277
|
+
family: CoinFamily;
|
|
1278
|
+
explorerUrl: string;
|
|
1279
|
+
accountExplorerUrl: string;
|
|
1280
|
+
chainId: number;
|
|
1281
|
+
nativeCoinOperationHashPrefix: string;
|
|
1282
|
+
}
|
|
1283
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1284
|
+
name: string;
|
|
1285
|
+
family: CoinFamily;
|
|
1286
|
+
explorerUrl: string;
|
|
1287
|
+
accountExplorerUrl: string;
|
|
1288
|
+
chainId: number;
|
|
1289
|
+
nativeCoinOperationHashPrefix: string;
|
|
1290
|
+
}
|
|
1291
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1292
|
+
name: string;
|
|
1293
|
+
family: CoinFamily;
|
|
1294
|
+
explorerUrl: string;
|
|
1295
|
+
accountExplorerUrl: string;
|
|
1296
|
+
chainId: number;
|
|
1297
|
+
nativeCoinOperationHashPrefix: string;
|
|
1298
|
+
walletFactoryAddress: string;
|
|
1299
|
+
batcherContractAddress: string;
|
|
1300
|
+
forwarderFactoryAddress: string;
|
|
1301
|
+
forwarderImplementationAddress: string;
|
|
1302
|
+
walletImplementationAddress: string;
|
|
1303
|
+
}
|
|
1304
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1305
|
+
name: string;
|
|
1306
|
+
family: CoinFamily;
|
|
1307
|
+
explorerUrl: string;
|
|
1308
|
+
accountExplorerUrl: string;
|
|
1309
|
+
chainId: number;
|
|
1310
|
+
nativeCoinOperationHashPrefix: string;
|
|
1311
|
+
}
|
|
1312
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1313
|
+
name: string;
|
|
1314
|
+
family: CoinFamily;
|
|
1315
|
+
explorerUrl: string;
|
|
1316
|
+
accountExplorerUrl: string;
|
|
1317
|
+
chainId: number;
|
|
1318
|
+
nativeCoinOperationHashPrefix: string;
|
|
1319
|
+
walletFactoryAddress: string;
|
|
1320
|
+
batcherContractAddress: string;
|
|
1321
|
+
forwarderFactoryAddress: string;
|
|
1322
|
+
forwarderImplementationAddress: string;
|
|
1323
|
+
walletImplementationAddress: string;
|
|
1324
|
+
}
|
|
1325
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1326
|
+
name: string;
|
|
1327
|
+
family: CoinFamily;
|
|
1328
|
+
explorerUrl: string;
|
|
1329
|
+
accountExplorerUrl: string;
|
|
1330
|
+
chainId: number;
|
|
1331
|
+
nativeCoinOperationHashPrefix: string;
|
|
1332
|
+
}
|
|
1333
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1334
|
+
name: string;
|
|
1335
|
+
family: CoinFamily;
|
|
1336
|
+
explorerUrl: string;
|
|
1337
|
+
accountExplorerUrl: string;
|
|
1338
|
+
chainId: number;
|
|
1339
|
+
nativeCoinOperationHashPrefix: string;
|
|
1340
|
+
walletFactoryAddress: string;
|
|
1341
|
+
batcherContractAddress: string;
|
|
1342
|
+
forwarderFactoryAddress: string;
|
|
1343
|
+
forwarderImplementationAddress: string;
|
|
1344
|
+
walletImplementationAddress: string;
|
|
1345
|
+
}
|
|
1346
|
+
declare class Og extends Mainnet implements EthereumNetwork {
|
|
1347
|
+
name: string;
|
|
1348
|
+
family: CoinFamily;
|
|
1349
|
+
explorerUrl: string;
|
|
1350
|
+
accountExplorerUrl: string;
|
|
1351
|
+
chainId: number;
|
|
1352
|
+
nativeCoinOperationHashPrefix: string;
|
|
1353
|
+
}
|
|
1354
|
+
declare class OgTestnet extends Testnet implements EthereumNetwork {
|
|
1355
|
+
name: string;
|
|
1356
|
+
family: CoinFamily;
|
|
1357
|
+
explorerUrl: string;
|
|
1358
|
+
accountExplorerUrl: string;
|
|
1359
|
+
chainId: number;
|
|
1360
|
+
nativeCoinOperationHashPrefix: string;
|
|
1361
|
+
}
|
|
1362
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1363
|
+
name: string;
|
|
1364
|
+
family: CoinFamily;
|
|
1365
|
+
explorerUrl: string;
|
|
1366
|
+
accountExplorerUrl: string;
|
|
1367
|
+
chainId: number;
|
|
1368
|
+
nativeCoinOperationHashPrefix: string;
|
|
1369
|
+
batcherContractAddress: string;
|
|
1370
|
+
forwarderFactoryAddress: string;
|
|
1371
|
+
forwarderImplementationAddress: string;
|
|
1372
|
+
}
|
|
1373
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1374
|
+
name: string;
|
|
1375
|
+
family: CoinFamily;
|
|
1376
|
+
explorerUrl: string;
|
|
1377
|
+
accountExplorerUrl: string;
|
|
1378
|
+
chainId: number;
|
|
1379
|
+
nativeCoinOperationHashPrefix: string;
|
|
1380
|
+
batcherContractAddress: string;
|
|
1381
|
+
forwarderFactoryAddress: string;
|
|
1382
|
+
forwarderImplementationAddress: string;
|
|
1383
|
+
}
|
|
1384
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1385
|
+
name: string;
|
|
1386
|
+
family: CoinFamily;
|
|
1387
|
+
explorerUrl: string;
|
|
1388
|
+
accountExplorerUrl: string;
|
|
1389
|
+
chainId: number;
|
|
1390
|
+
nativeCoinOperationHashPrefix: string;
|
|
1391
|
+
batcherContractAddress: string;
|
|
1392
|
+
forwarderFactoryAddress: string;
|
|
1393
|
+
forwarderImplementationAddress: string;
|
|
1394
|
+
}
|
|
1395
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1396
|
+
name: string;
|
|
1397
|
+
family: CoinFamily;
|
|
1398
|
+
explorerUrl: string;
|
|
1399
|
+
accountExplorerUrl: string;
|
|
1400
|
+
chainId: number;
|
|
1401
|
+
nativeCoinOperationHashPrefix: string;
|
|
1402
|
+
batcherContractAddress: string;
|
|
1403
|
+
forwarderFactoryAddress: string;
|
|
1404
|
+
forwarderImplementationAddress: string;
|
|
1405
|
+
}
|
|
1406
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1407
|
+
name: string;
|
|
1408
|
+
family: CoinFamily;
|
|
1409
|
+
explorerUrl: string;
|
|
1410
|
+
accountExplorerUrl: string;
|
|
1411
|
+
chainId: number;
|
|
1412
|
+
nativeCoinOperationHashPrefix: string;
|
|
1413
|
+
walletFactoryAddress: string;
|
|
1414
|
+
batcherContractAddress: string;
|
|
1415
|
+
forwarderFactoryAddress: string;
|
|
1416
|
+
forwarderImplementationAddress: string;
|
|
1417
|
+
walletImplementationAddress: string;
|
|
1418
|
+
}
|
|
1419
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1420
|
+
name: string;
|
|
1421
|
+
family: CoinFamily;
|
|
1422
|
+
explorerUrl: string;
|
|
1423
|
+
chainId: number;
|
|
1424
|
+
nativeCoinOperationHashPrefix: string;
|
|
1425
|
+
walletImplementationAddress: string;
|
|
1426
|
+
batcherContractAddress: string;
|
|
1427
|
+
forwarderFactoryAddress: string;
|
|
1428
|
+
forwarderImplementationAddress: string;
|
|
1429
|
+
}
|
|
1430
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1431
|
+
name: string;
|
|
1432
|
+
family: CoinFamily;
|
|
1433
|
+
explorerUrl: string;
|
|
1434
|
+
accountExplorerUrl: string;
|
|
1435
|
+
chainId: number;
|
|
1436
|
+
nativeCoinOperationHashPrefix: string;
|
|
1437
|
+
walletImplementationAddress: string;
|
|
1438
|
+
batcherContractAddress: string;
|
|
1439
|
+
forwarderFactoryAddress: string;
|
|
1440
|
+
forwarderImplementationAddress: string;
|
|
1441
|
+
}
|
|
1442
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1443
|
+
name: string;
|
|
1444
|
+
family: CoinFamily;
|
|
1445
|
+
explorerUrl: string;
|
|
1446
|
+
accountExplorerUrl: string;
|
|
1447
|
+
chainId: number;
|
|
1448
|
+
nativeCoinOperationHashPrefix: string;
|
|
1449
|
+
batcherContractAddress: string;
|
|
1450
|
+
forwarderFactoryAddress: string;
|
|
1451
|
+
forwarderImplementationAddress: string;
|
|
1452
|
+
walletImplementationAddress: string;
|
|
1453
|
+
}
|
|
1454
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1455
|
+
name: string;
|
|
1456
|
+
family: CoinFamily;
|
|
1457
|
+
explorerUrl: string;
|
|
1458
|
+
accountExplorerUrl: string;
|
|
1459
|
+
chainId: number;
|
|
1460
|
+
nativeCoinOperationHashPrefix: string;
|
|
1461
|
+
walletImplementationAddress: string;
|
|
1462
|
+
walletFactoryAddress: string;
|
|
1463
|
+
batcherContractAddress: string;
|
|
1464
|
+
forwarderFactoryAddress: string;
|
|
1465
|
+
forwarderImplementationAddress: string;
|
|
1466
|
+
}
|
|
1467
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1468
|
+
name: string;
|
|
1469
|
+
family: CoinFamily;
|
|
1470
|
+
explorerUrl: string;
|
|
1471
|
+
accountExplorerUrl: string;
|
|
1472
|
+
chainId: number;
|
|
1473
|
+
nativeCoinOperationHashPrefix: string;
|
|
1474
|
+
walletFactoryAddress: string;
|
|
1475
|
+
batcherContractAddress: string;
|
|
1476
|
+
forwarderFactoryAddress: string;
|
|
1477
|
+
forwarderImplementationAddress: string;
|
|
1478
|
+
walletImplementationAddress: string;
|
|
1479
|
+
}
|
|
1480
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1481
|
+
name: string;
|
|
1482
|
+
family: CoinFamily;
|
|
1483
|
+
explorerUrl: string;
|
|
1484
|
+
accountExplorerUrl: string;
|
|
1485
|
+
chainId: number;
|
|
1486
|
+
nativeCoinOperationHashPrefix: string;
|
|
1487
|
+
}
|
|
1488
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1489
|
+
name: string;
|
|
1490
|
+
family: CoinFamily;
|
|
1491
|
+
explorerUrl: string;
|
|
1492
|
+
accountExplorerUrl: string;
|
|
1493
|
+
chainId: number;
|
|
1494
|
+
nativeCoinOperationHashPrefix: string;
|
|
1495
|
+
walletFactoryAddress: string;
|
|
1496
|
+
batcherContractAddress: string;
|
|
1497
|
+
forwarderFactoryAddress: string;
|
|
1498
|
+
forwarderImplementationAddress: string;
|
|
1499
|
+
walletImplementationAddress: string;
|
|
1500
|
+
}
|
|
1501
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1502
|
+
name: string;
|
|
1503
|
+
family: CoinFamily;
|
|
1504
|
+
explorerUrl: string;
|
|
1505
|
+
accountExplorerUrl: string;
|
|
1506
|
+
chainId: number;
|
|
1507
|
+
nativeCoinOperationHashPrefix: string;
|
|
1508
|
+
walletFactoryAddress: string;
|
|
1509
|
+
batcherContractAddress: string;
|
|
1510
|
+
forwarderFactoryAddress: string;
|
|
1511
|
+
forwarderImplementationAddress: string;
|
|
1512
|
+
walletImplementationAddress: string;
|
|
1513
|
+
}
|
|
1514
|
+
declare class Somi extends Mainnet implements EthereumNetwork {
|
|
1515
|
+
name: string;
|
|
1516
|
+
family: CoinFamily;
|
|
1517
|
+
explorerUrl: string;
|
|
1518
|
+
chainId: number;
|
|
1519
|
+
nativeCoinOperationHashPrefix: string;
|
|
1520
|
+
walletImplementationAddress: string;
|
|
1521
|
+
walletFactoryAddress: string;
|
|
1522
|
+
forwarderImplementationAddress: string;
|
|
1523
|
+
forwarderFactoryAddress: string;
|
|
1524
|
+
batcherContractAddress: string;
|
|
1525
|
+
}
|
|
1526
|
+
export declare class FlareP extends Mainnet implements FlareNetwork {
|
|
1527
|
+
name: string;
|
|
1528
|
+
family: CoinFamily;
|
|
1529
|
+
explorerUrl: string;
|
|
1530
|
+
accountExplorerUrl: string;
|
|
1531
|
+
blockchainID: string;
|
|
1532
|
+
cChainBlockchainID: string;
|
|
1533
|
+
networkID: number;
|
|
1534
|
+
hrp: string;
|
|
1535
|
+
alias: string;
|
|
1536
|
+
vm: string;
|
|
1537
|
+
txFee: string;
|
|
1538
|
+
maxImportFee: string;
|
|
1539
|
+
createSubnetTx: string;
|
|
1540
|
+
createChainTx: string;
|
|
1541
|
+
creationTxFee: string;
|
|
1542
|
+
minConsumption: string;
|
|
1543
|
+
maxConsumption: string;
|
|
1544
|
+
maxSupply: string;
|
|
1545
|
+
minStake: string;
|
|
1546
|
+
minStakeDuration: string;
|
|
1547
|
+
maxStakeDuration: string;
|
|
1548
|
+
minDelegationStake: string;
|
|
1549
|
+
minDelegationFee: string;
|
|
1550
|
+
}
|
|
1551
|
+
export declare class FlarePTestnet extends Testnet 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 Flare extends Mainnet implements FlareNetwork, EthereumNetwork {
|
|
1577
|
+
name: string;
|
|
1578
|
+
family: CoinFamily;
|
|
1579
|
+
explorerUrl: string;
|
|
1580
|
+
accountExplorerUrl: string;
|
|
1581
|
+
chainId: number;
|
|
1582
|
+
nativeCoinOperationHashPrefix: string;
|
|
1583
|
+
batcherContractAddress: string;
|
|
1584
|
+
forwarderFactoryAddress: string;
|
|
1585
|
+
forwarderImplementationAddress: string;
|
|
1586
|
+
}
|
|
1587
|
+
export declare class FlareTestnet extends Testnet implements FlareNetwork, EthereumNetwork {
|
|
1588
|
+
name: string;
|
|
1589
|
+
family: CoinFamily;
|
|
1590
|
+
explorerUrl: string;
|
|
1591
|
+
accountExplorerUrl: string;
|
|
1592
|
+
chainId: number;
|
|
1593
|
+
nativeCoinOperationHashPrefix: string;
|
|
1594
|
+
batcherContractAddress: string;
|
|
1595
|
+
forwarderFactoryAddress: string;
|
|
1596
|
+
forwarderImplementationAddress: string;
|
|
1597
|
+
}
|
|
1598
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1599
|
+
name: string;
|
|
1600
|
+
family: CoinFamily;
|
|
1601
|
+
explorerUrl: string;
|
|
1602
|
+
accountExplorerUrl: string;
|
|
1603
|
+
chainId: number;
|
|
1604
|
+
nativeCoinOperationHashPrefix: string;
|
|
1605
|
+
batcherContractAddress: string;
|
|
1606
|
+
forwarderFactoryAddress: string;
|
|
1607
|
+
forwarderImplementationAddress: string;
|
|
1608
|
+
}
|
|
1609
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1610
|
+
name: string;
|
|
1611
|
+
family: CoinFamily;
|
|
1612
|
+
explorerUrl: string;
|
|
1613
|
+
accountExplorerUrl: string;
|
|
1614
|
+
chainId: number;
|
|
1615
|
+
nativeCoinOperationHashPrefix: string;
|
|
1616
|
+
batcherContractAddress: string;
|
|
1617
|
+
forwarderFactoryAddress: string;
|
|
1618
|
+
forwarderImplementationAddress: string;
|
|
1619
|
+
}
|
|
1620
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1621
|
+
name: string;
|
|
1622
|
+
family: CoinFamily;
|
|
1623
|
+
explorerUrl: string;
|
|
1624
|
+
accountExplorerUrl: string;
|
|
1625
|
+
chainId: number;
|
|
1626
|
+
nativeCoinOperationHashPrefix: string;
|
|
1627
|
+
tokenOperationHashPrefix: string;
|
|
1628
|
+
forwarderFactoryAddress: string;
|
|
1629
|
+
forwarderImplementationAddress: string;
|
|
1630
|
+
walletFactoryAddress: string;
|
|
1631
|
+
walletImplementationAddress: string;
|
|
1632
|
+
}
|
|
1633
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1634
|
+
name: string;
|
|
1635
|
+
family: CoinFamily;
|
|
1636
|
+
explorerUrl: string;
|
|
1637
|
+
accountExplorerUrl: string;
|
|
1638
|
+
chainId: number;
|
|
1639
|
+
nativeCoinOperationHashPrefix: string;
|
|
1640
|
+
tokenOperationHashPrefix: string;
|
|
1641
|
+
forwarderFactoryAddress: string;
|
|
1642
|
+
forwarderImplementationAddress: string;
|
|
1643
|
+
walletFactoryAddress: string;
|
|
1644
|
+
walletImplementationAddress: string;
|
|
1645
|
+
}
|
|
1646
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1647
|
+
name: string;
|
|
1648
|
+
family: CoinFamily;
|
|
1649
|
+
explorerUrl: string;
|
|
1650
|
+
specName: string;
|
|
1651
|
+
genesisHash: string;
|
|
1652
|
+
specVersion: number;
|
|
1653
|
+
chainName: string;
|
|
1654
|
+
txVersion: number;
|
|
1655
|
+
}
|
|
1656
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1657
|
+
name: string;
|
|
1658
|
+
family: CoinFamily;
|
|
1659
|
+
explorerUrl: string;
|
|
1660
|
+
specName: SubstrateSpecNameType;
|
|
1661
|
+
genesisHash: string;
|
|
1662
|
+
specVersion: number;
|
|
1663
|
+
chainName: string;
|
|
1664
|
+
txVersion: number;
|
|
1665
|
+
}
|
|
1666
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1667
|
+
name: string;
|
|
1668
|
+
family: CoinFamily;
|
|
1669
|
+
explorerUrl: string;
|
|
1670
|
+
accountExplorerUrl: string;
|
|
1671
|
+
chainId: number;
|
|
1672
|
+
forwarderFactoryAddress: string;
|
|
1673
|
+
forwarderImplementationAddress: string;
|
|
1674
|
+
}
|
|
1675
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1676
|
+
name: string;
|
|
1677
|
+
family: CoinFamily;
|
|
1678
|
+
explorerUrl: string;
|
|
1679
|
+
accountExplorerUrl: string;
|
|
1680
|
+
chainId: number;
|
|
1681
|
+
forwarderFactoryAddress: string;
|
|
1682
|
+
forwarderImplementationAddress: string;
|
|
1683
|
+
}
|
|
1684
|
+
declare class Iota extends Mainnet implements AccountNetwork {
|
|
1685
|
+
name: string;
|
|
1686
|
+
family: CoinFamily;
|
|
1687
|
+
explorerUrl: string;
|
|
1688
|
+
}
|
|
1689
|
+
declare class IotaTestnet extends Testnet implements AccountNetwork {
|
|
1690
|
+
name: string;
|
|
1691
|
+
family: CoinFamily;
|
|
1692
|
+
explorerUrl: string;
|
|
1693
|
+
}
|
|
1694
|
+
declare class Flow extends Mainnet implements EthereumNetwork {
|
|
1695
|
+
name: string;
|
|
1696
|
+
family: CoinFamily;
|
|
1697
|
+
explorerUrl: string;
|
|
1698
|
+
accountExplorerUrl: string;
|
|
1699
|
+
chainId: number;
|
|
1700
|
+
nativeCoinOperationHashPrefix: string;
|
|
1701
|
+
}
|
|
1702
|
+
declare class FlowTestnet extends Testnet implements EthereumNetwork {
|
|
1703
|
+
name: string;
|
|
1704
|
+
family: CoinFamily;
|
|
1705
|
+
explorerUrl: string;
|
|
1706
|
+
accountExplorerUrl: string;
|
|
1707
|
+
chainId: number;
|
|
1708
|
+
nativeCoinOperationHashPrefix: string;
|
|
1709
|
+
}
|
|
1710
|
+
declare class MegaETH extends Mainnet implements EthereumNetwork {
|
|
1711
|
+
name: string;
|
|
1712
|
+
family: CoinFamily;
|
|
1713
|
+
explorerUrl: string;
|
|
1714
|
+
accountExplorerUrl: string;
|
|
1715
|
+
chainId: number;
|
|
1716
|
+
nativeCoinOperationHashPrefix: string;
|
|
1717
|
+
}
|
|
1718
|
+
declare class MegaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1719
|
+
name: string;
|
|
1720
|
+
family: CoinFamily;
|
|
1721
|
+
explorerUrl: string;
|
|
1722
|
+
accountExplorerUrl: string;
|
|
1723
|
+
chainId: number;
|
|
1724
|
+
nativeCoinOperationHashPrefix: string;
|
|
1725
|
+
}
|
|
1726
|
+
declare class Plume extends Mainnet implements EthereumNetwork {
|
|
1727
|
+
name: string;
|
|
1728
|
+
family: CoinFamily;
|
|
1729
|
+
explorerUrl: string;
|
|
1730
|
+
accountExplorerUrl: string;
|
|
1731
|
+
chainId: number;
|
|
1732
|
+
nativeCoinOperationHashPrefix: string;
|
|
1733
|
+
}
|
|
1734
|
+
declare class PlumeTestnet extends Testnet implements EthereumNetwork {
|
|
1735
|
+
name: string;
|
|
1736
|
+
family: CoinFamily;
|
|
1737
|
+
explorerUrl: string;
|
|
1738
|
+
accountExplorerUrl: string;
|
|
1739
|
+
chainId: number;
|
|
1740
|
+
nativeCoinOperationHashPrefix: string;
|
|
604
1741
|
}
|
|
605
1742
|
export declare const Networks: {
|
|
606
1743
|
main: {
|
|
607
1744
|
ada: Readonly<Ada>;
|
|
608
1745
|
algorand: Readonly<Algorand>;
|
|
1746
|
+
apechain: Readonly<ApeChain>;
|
|
1747
|
+
apt: Readonly<Apt>;
|
|
1748
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1749
|
+
asi: Readonly<Asi>;
|
|
609
1750
|
atom: Readonly<Atom>;
|
|
610
1751
|
avalancheC: Readonly<AvalancheC>;
|
|
611
1752
|
avalancheP: Readonly<AvalancheP>;
|
|
1753
|
+
baby: Readonly<Baby>;
|
|
1754
|
+
basechain: Readonly<BaseChain>;
|
|
612
1755
|
bitcoin: Readonly<Bitcoin>;
|
|
613
1756
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
614
1757
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
615
1758
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1759
|
+
bera: Readonly<Berachain>;
|
|
1760
|
+
bld: Readonly<Bld>;
|
|
616
1761
|
bsc: Readonly<BinanceSmartChain>;
|
|
617
1762
|
casper: Readonly<Casper>;
|
|
618
1763
|
celo: Readonly<Celo>;
|
|
1764
|
+
coredao: Readonly<Coredao>;
|
|
1765
|
+
coreum: Readonly<Coreum>;
|
|
1766
|
+
cronos: Readonly<Cronos>;
|
|
619
1767
|
dash: Readonly<Dash>;
|
|
620
1768
|
dogecoin: Readonly<Dogecoin>;
|
|
621
1769
|
dot: Readonly<Polkadot>;
|
|
@@ -626,60 +1774,168 @@ export declare const Networks: {
|
|
|
626
1774
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
627
1775
|
ethereumW: Readonly<EthereumW>;
|
|
628
1776
|
fiat: Readonly<Fiat>;
|
|
1777
|
+
fetchai: Readonly<FetchAi>;
|
|
1778
|
+
flow: Readonly<Flow>;
|
|
1779
|
+
flr: Readonly<Flare>;
|
|
1780
|
+
flrP: Readonly<FlareP>;
|
|
1781
|
+
hash: Readonly<Hash>;
|
|
629
1782
|
hedera: Readonly<Hedera>;
|
|
1783
|
+
icp: Readonly<Icp>;
|
|
1784
|
+
ip: Readonly<IP>;
|
|
1785
|
+
initia: Readonly<Initia>;
|
|
1786
|
+
iota: Readonly<Iota>;
|
|
1787
|
+
injective: Readonly<Injective>;
|
|
1788
|
+
irys: Readonly<Irys>;
|
|
1789
|
+
islm: Readonly<Islm>;
|
|
1790
|
+
kaia: Readonly<Kaia>;
|
|
1791
|
+
kava: Readonly<Kava>;
|
|
1792
|
+
kavaevm: Readonly<KavaEVM>;
|
|
1793
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
630
1794
|
litecoin: Readonly<Litecoin>;
|
|
1795
|
+
megaeth: Readonly<MegaETH>;
|
|
1796
|
+
mon: Readonly<Monad>;
|
|
1797
|
+
mantra: Readonly<Mantra>;
|
|
1798
|
+
plume: Readonly<Plume>;
|
|
631
1799
|
polygon: Readonly<Polygon>;
|
|
1800
|
+
polyx: Readonly<Polymesh>;
|
|
1801
|
+
phrs: Readonly<Pharos>;
|
|
1802
|
+
ctc: Readonly<Creditcoin>;
|
|
1803
|
+
hypeevm: Readonly<HypeEVM>;
|
|
1804
|
+
lineaeth: Readonly<LineaETH>;
|
|
1805
|
+
oas: Readonly<Oas>;
|
|
1806
|
+
og: Readonly<Og>;
|
|
632
1807
|
ofc: Readonly<Ofc>;
|
|
1808
|
+
optimism: Readonly<Optimism>;
|
|
1809
|
+
osmo: Readonly<Osmo>;
|
|
633
1810
|
rbtc: Readonly<Rbtc>;
|
|
1811
|
+
rune: Readonly<Rune>;
|
|
634
1812
|
stellar: Readonly<Stellar>;
|
|
1813
|
+
sei: Readonly<Sei>;
|
|
1814
|
+
seievm: Readonly<SeiEvm>;
|
|
1815
|
+
sgb: Readonly<Songbird>;
|
|
635
1816
|
sol: Readonly<Sol>;
|
|
1817
|
+
sonic: Readonly<Sonic>;
|
|
636
1818
|
sui: Readonly<Sui>;
|
|
637
1819
|
near: Readonly<Near>;
|
|
638
1820
|
stx: Readonly<Stx>;
|
|
1821
|
+
somi: Readonly<Somi>;
|
|
1822
|
+
soneium: Readonly<Soneium>;
|
|
639
1823
|
susd: Readonly<SUSD>;
|
|
1824
|
+
tao: Readonly<Bittensor>;
|
|
1825
|
+
tia: Readonly<Tia>;
|
|
1826
|
+
ton: Readonly<Ton>;
|
|
640
1827
|
trx: Readonly<Trx>;
|
|
1828
|
+
vet: Readonly<Vet>;
|
|
1829
|
+
wemix: Readonly<Wemix>;
|
|
1830
|
+
world: Readonly<World>;
|
|
1831
|
+
xdc: Readonly<Xdc>;
|
|
1832
|
+
xpl: Readonly<Plasma>;
|
|
641
1833
|
xrp: Readonly<Xrp>;
|
|
642
1834
|
xtz: Readonly<Xtz>;
|
|
643
1835
|
zCash: Readonly<ZCash>;
|
|
1836
|
+
zeta: Readonly<Zeta>;
|
|
1837
|
+
zkSync: Readonly<ZkSync>;
|
|
644
1838
|
};
|
|
645
1839
|
test: {
|
|
646
1840
|
ada: Readonly<AdaTestnet>;
|
|
647
1841
|
algorand: Readonly<AlgorandTestnet>;
|
|
1842
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1843
|
+
apt: Readonly<AptTestnet>;
|
|
1844
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1845
|
+
asi: Readonly<AsiTestnet>;
|
|
648
1846
|
atom: Readonly<AtomTestnet>;
|
|
649
1847
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
650
1848
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1849
|
+
baby: Readonly<BabyTestnet>;
|
|
1850
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
651
1851
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1852
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1853
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1854
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
652
1855
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
653
1856
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
654
1857
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1858
|
+
bera: Readonly<BerachainTestnet>;
|
|
1859
|
+
bld: Readonly<BldTestnet>;
|
|
655
1860
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
656
1861
|
casper: Readonly<CasperTestnet>;
|
|
1862
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
657
1863
|
celo: Readonly<CeloTestnet>;
|
|
1864
|
+
cronos: Readonly<CronosTestnet>;
|
|
658
1865
|
dash: Readonly<DashTestnet>;
|
|
659
1866
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
660
1867
|
dot: Readonly<PolkadotTestnet>;
|
|
661
1868
|
eCash: Readonly<ECashTestnet>;
|
|
662
1869
|
eos: Readonly<EosTestnet>;
|
|
663
1870
|
fiat: Readonly<FiatTestnet>;
|
|
1871
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1872
|
+
flow: Readonly<FlowTestnet>;
|
|
1873
|
+
flr: Readonly<FlareTestnet>;
|
|
1874
|
+
flrP: Readonly<FlarePTestnet>;
|
|
1875
|
+
mon: Readonly<MonadTestnet>;
|
|
1876
|
+
megaeth: Readonly<MegaETHTestnet>;
|
|
664
1877
|
pyrmont: Readonly<Pyrmont>;
|
|
1878
|
+
plume: Readonly<PlumeTestnet>;
|
|
665
1879
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
1880
|
+
hash: Readonly<HashTestnet>;
|
|
666
1881
|
hedera: Readonly<HederaTestnet>;
|
|
1882
|
+
icp: Readonly<IcpTestnet>;
|
|
1883
|
+
ip: Readonly<IPTestnet>;
|
|
1884
|
+
initia: Readonly<InitiaTestnet>;
|
|
1885
|
+
injective: Readonly<InjectiveTestnet>;
|
|
1886
|
+
iota: Readonly<IotaTestnet>;
|
|
1887
|
+
irys: Readonly<IrysTestnet>;
|
|
1888
|
+
islm: Readonly<IslmTestnet>;
|
|
1889
|
+
kava: Readonly<KavaTestnet>;
|
|
1890
|
+
kavaevm: Readonly<KavaEVMTestnet>;
|
|
667
1891
|
kovan: Readonly<Kovan>;
|
|
668
1892
|
goerli: Readonly<Goerli>;
|
|
1893
|
+
holesky: Readonly<Holesky>;
|
|
1894
|
+
hoodi: Readonly<Hoodi>;
|
|
1895
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
669
1896
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1897
|
+
mantra: Readonly<MantraTestnet>;
|
|
670
1898
|
polygon: Readonly<PolygonTestnet>;
|
|
1899
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1900
|
+
phrs: Readonly<PharosTestnet>;
|
|
1901
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
1902
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
1903
|
+
lineaeth: Readonly<LineaETHTestnet>;
|
|
1904
|
+
oas: Readonly<OasTestnet>;
|
|
1905
|
+
og: Readonly<OgTestnet>;
|
|
671
1906
|
ofc: Readonly<OfcTestnet>;
|
|
1907
|
+
optimism: Readonly<OptimismTestnet>;
|
|
1908
|
+
osmo: Readonly<OsmoTestnet>;
|
|
672
1909
|
rbtc: Readonly<RbtcTestnet>;
|
|
1910
|
+
rune: Readonly<RuneTestNet>;
|
|
1911
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
673
1912
|
stellar: Readonly<StellarTestnet>;
|
|
1913
|
+
sei: Readonly<SeiTestnet>;
|
|
1914
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
674
1915
|
sol: Readonly<SolTestnet>;
|
|
675
1916
|
sui: Readonly<SuiTestnet>;
|
|
676
1917
|
near: Readonly<NearTestnet>;
|
|
677
1918
|
stx: Readonly<StxTestnet>;
|
|
1919
|
+
stt: Readonly<SomniaTestnet>;
|
|
1920
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
1921
|
+
sonic: Readonly<SonicTestnet>;
|
|
1922
|
+
kaia: Readonly<KaiaTestnet>;
|
|
678
1923
|
susd: Readonly<SUSDTestnet>;
|
|
1924
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1925
|
+
tao: Readonly<BittensorTestnet>;
|
|
1926
|
+
tia: Readonly<TiaTestnet>;
|
|
1927
|
+
ton: Readonly<TonTestnet>;
|
|
679
1928
|
trx: Readonly<TrxTestnet>;
|
|
1929
|
+
vet: Readonly<VetTestnet>;
|
|
1930
|
+
wemix: Readonly<WemixTestnet>;
|
|
1931
|
+
world: Readonly<WorldTestnet>;
|
|
1932
|
+
xdc: Readonly<XdcTestnet>;
|
|
1933
|
+
xpl: Readonly<PlasmaTestnet>;
|
|
680
1934
|
xrp: Readonly<XrpTestnet>;
|
|
681
1935
|
xtz: Readonly<XtzTestnet>;
|
|
682
1936
|
zCash: Readonly<ZCashTestnet>;
|
|
1937
|
+
zeta: Readonly<ZetaTestnet>;
|
|
1938
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
683
1939
|
};
|
|
684
1940
|
};
|
|
685
1941
|
export {};
|