@bitgo-beta/statics 10.0.1-alpha.36 → 10.0.1-alpha.360
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 +3124 -0
- package/dist/src/account.d.ts +613 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1007 -125
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +9 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +10 -3
- package/dist/src/base.d.ts +1636 -33
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1707 -49
- package/dist/src/coinFeatures.d.ts +91 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +577 -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 +100 -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 +157 -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 +1469 -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 +593 -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 +1366 -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 +147 -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 +2 -0
- package/dist/src/coins/solTokens.d.ts.map +1 -0
- package/dist/src/coins/solTokens.js +353 -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 +10 -0
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +763 -1375
- 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/index.d.ts +3 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +21 -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 +4 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +95 -19
- package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
- package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
- package/dist/src/networkFeatureMapForTokens.js +29 -0
- package/dist/src/networks.d.ts +973 -4
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1287 -50
- package/dist/src/ofc.d.ts +385 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +797 -14
- package/dist/src/tokenConfig.d.ts +177 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +682 -238
- 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 -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
|
@@ -11,6 +11,25 @@ export declare abstract class BaseNetwork {
|
|
|
11
11
|
}
|
|
12
12
|
export interface UtxoNetwork extends BaseNetwork {
|
|
13
13
|
utxolibName: string;
|
|
14
|
+
paygoAddressAttestationPubkey?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface LightningNetwork extends UtxoNetwork {
|
|
17
|
+
/**
|
|
18
|
+
* The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
19
|
+
* between the user's extended private key and the Lightning service. This key facilitates secure communication
|
|
20
|
+
* by enabling the creation of a shared secret for encryption and decryption of data.
|
|
21
|
+
*/
|
|
22
|
+
lightningServicePubKey: string;
|
|
23
|
+
/**
|
|
24
|
+
* The public key of the middleware service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
25
|
+
* between the user's extended private key and the middleware service.
|
|
26
|
+
*/
|
|
27
|
+
middlewarePubKey: string;
|
|
28
|
+
/**
|
|
29
|
+
* The public key of the TAT service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
30
|
+
* between the user's extended private key and the TAT service.
|
|
31
|
+
*/
|
|
32
|
+
tatPubKey: string;
|
|
14
33
|
}
|
|
15
34
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
35
|
utxolibName: string;
|
|
@@ -40,20 +59,29 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
59
|
readonly minDelegationFee: string;
|
|
41
60
|
readonly avaxAssetID: string;
|
|
42
61
|
readonly txFee: string;
|
|
62
|
+
readonly maxImportFee: string;
|
|
43
63
|
}
|
|
44
64
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
65
|
readonly accountExplorerUrl?: string;
|
|
66
|
+
readonly blockExplorerUrl?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface CosmosNetwork extends AccountNetwork {
|
|
69
|
+
readonly addressPrefix: string;
|
|
70
|
+
readonly validatorPrefix: string;
|
|
71
|
+
readonly denom: string;
|
|
72
|
+
readonly gasAmount: string;
|
|
73
|
+
readonly gasLimit: number;
|
|
46
74
|
}
|
|
47
75
|
/**
|
|
48
76
|
* Specification name type of the chain. Used in setting up the registry
|
|
49
77
|
*/
|
|
50
|
-
export
|
|
78
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
79
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet';
|
|
51
80
|
export interface DotNetwork extends AccountNetwork {
|
|
52
81
|
readonly specName: PolkadotSpecNameType;
|
|
53
82
|
readonly genesisHash: string;
|
|
54
83
|
readonly specVersion: number;
|
|
55
84
|
readonly chainName: string;
|
|
56
|
-
readonly metadataRpc: `0x${string}`;
|
|
57
85
|
readonly txVersion: number;
|
|
58
86
|
}
|
|
59
87
|
export interface EthereumNetwork extends AccountNetwork {
|
|
@@ -61,6 +89,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
89
|
readonly batcherContractAddress?: string;
|
|
62
90
|
readonly forwarderFactoryAddress?: string;
|
|
63
91
|
readonly forwarderImplementationAddress?: string;
|
|
92
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
93
|
+
readonly tokenOperationHashPrefix?: string;
|
|
64
94
|
}
|
|
65
95
|
export interface TronNetwork extends AccountNetwork {
|
|
66
96
|
maxFeeLimit: string;
|
|
@@ -110,6 +140,60 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
140
|
poolDeposit: number;
|
|
111
141
|
stakeKeyDeposit: number;
|
|
112
142
|
}
|
|
143
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
144
|
+
name: string;
|
|
145
|
+
family: CoinFamily;
|
|
146
|
+
explorerUrl: string;
|
|
147
|
+
accountExplorerUrl: string;
|
|
148
|
+
blockExplorerUrl: string;
|
|
149
|
+
}
|
|
150
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
151
|
+
name: string;
|
|
152
|
+
family: CoinFamily;
|
|
153
|
+
explorerUrl: string;
|
|
154
|
+
accountExplorerUrl: string;
|
|
155
|
+
blockExplorerUrl: string;
|
|
156
|
+
}
|
|
157
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
158
|
+
name: string;
|
|
159
|
+
family: CoinFamily;
|
|
160
|
+
explorerUrl: string;
|
|
161
|
+
accountExplorerUrl: string;
|
|
162
|
+
}
|
|
163
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
164
|
+
name: string;
|
|
165
|
+
family: CoinFamily;
|
|
166
|
+
explorerUrl: string;
|
|
167
|
+
accountExplorerUrl: string;
|
|
168
|
+
}
|
|
169
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
170
|
+
name: string;
|
|
171
|
+
family: CoinFamily;
|
|
172
|
+
explorerUrl: string;
|
|
173
|
+
accountExplorerUrl: string;
|
|
174
|
+
chainId: number;
|
|
175
|
+
nativeCoinOperationHashPrefix: string;
|
|
176
|
+
tokenOperationHashPrefix: string;
|
|
177
|
+
forwarderFactoryAddress: string;
|
|
178
|
+
forwarderImplementationAddress: string;
|
|
179
|
+
walletFactoryAddress: string;
|
|
180
|
+
walletImplementationAddress: string;
|
|
181
|
+
batcherContractAddress: string;
|
|
182
|
+
}
|
|
183
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
184
|
+
name: string;
|
|
185
|
+
family: CoinFamily;
|
|
186
|
+
explorerUrl: string;
|
|
187
|
+
accountExplorerUrl: string;
|
|
188
|
+
chainId: number;
|
|
189
|
+
nativeCoinOperationHashPrefix: string;
|
|
190
|
+
tokenOperationHashPrefix: string;
|
|
191
|
+
forwarderFactoryAddress: string;
|
|
192
|
+
forwarderImplementationAddress: string;
|
|
193
|
+
walletFactoryAddress: string;
|
|
194
|
+
walletImplementationAddress: string;
|
|
195
|
+
batcherContractAddress: string;
|
|
196
|
+
}
|
|
113
197
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
198
|
name: string;
|
|
115
199
|
family: CoinFamily;
|
|
@@ -137,6 +221,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
221
|
alias: string;
|
|
138
222
|
vm: string;
|
|
139
223
|
txFee: string;
|
|
224
|
+
maxImportFee: string;
|
|
140
225
|
createSubnetTx: string;
|
|
141
226
|
createChainTx: string;
|
|
142
227
|
creationTxFee: string;
|
|
@@ -162,6 +247,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
247
|
hrp: string;
|
|
163
248
|
vm: string;
|
|
164
249
|
txFee: string;
|
|
250
|
+
maxImportFee: string;
|
|
165
251
|
createSubnetTx: string;
|
|
166
252
|
createChainTx: string;
|
|
167
253
|
creationTxFee: string;
|
|
@@ -180,6 +266,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
266
|
explorerUrl: string;
|
|
181
267
|
accountExplorerUrl: string;
|
|
182
268
|
chainId: number;
|
|
269
|
+
nativeCoinOperationHashPrefix: string;
|
|
270
|
+
tokenOperationHashPrefix: string;
|
|
271
|
+
batcherContractAddress: string;
|
|
183
272
|
}
|
|
184
273
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
274
|
name: string;
|
|
@@ -187,6 +276,27 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
276
|
explorerUrl: string;
|
|
188
277
|
accountExplorerUrl: string;
|
|
189
278
|
chainId: number;
|
|
279
|
+
nativeCoinOperationHashPrefix: string;
|
|
280
|
+
tokenOperationHashPrefix: string;
|
|
281
|
+
batcherContractAddress: string;
|
|
282
|
+
}
|
|
283
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
284
|
+
name: string;
|
|
285
|
+
family: CoinFamily;
|
|
286
|
+
utxolibName: string;
|
|
287
|
+
explorerUrl: string;
|
|
288
|
+
lightningServicePubKey: string;
|
|
289
|
+
middlewarePubKey: string;
|
|
290
|
+
tatPubKey: string;
|
|
291
|
+
}
|
|
292
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
293
|
+
name: string;
|
|
294
|
+
family: CoinFamily;
|
|
295
|
+
utxolibName: string;
|
|
296
|
+
explorerUrl: string;
|
|
297
|
+
lightningServicePubKey: string;
|
|
298
|
+
middlewarePubKey: string;
|
|
299
|
+
tatPubKey: string;
|
|
190
300
|
}
|
|
191
301
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
302
|
name: string;
|
|
@@ -199,6 +309,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
199
309
|
family: CoinFamily;
|
|
200
310
|
utxolibName: string;
|
|
201
311
|
explorerUrl: string;
|
|
312
|
+
paygoAddressAttestationPubkey: string;
|
|
313
|
+
}
|
|
314
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
315
|
+
name: string;
|
|
316
|
+
family: CoinFamily;
|
|
317
|
+
utxolibName: string;
|
|
318
|
+
explorerUrl: string;
|
|
319
|
+
}
|
|
320
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
321
|
+
name: string;
|
|
322
|
+
family: CoinFamily;
|
|
323
|
+
utxolibName: string;
|
|
324
|
+
explorerUrl: string;
|
|
325
|
+
}
|
|
326
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
327
|
+
name: string;
|
|
328
|
+
family: CoinFamily;
|
|
329
|
+
utxolibName: string;
|
|
330
|
+
explorerUrl: string;
|
|
202
331
|
}
|
|
203
332
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
333
|
name: string;
|
|
@@ -280,7 +409,6 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
280
409
|
genesisHash: string;
|
|
281
410
|
specVersion: number;
|
|
282
411
|
chainName: string;
|
|
283
|
-
metadataRpc: `0x${string}`;
|
|
284
412
|
txVersion: number;
|
|
285
413
|
}
|
|
286
414
|
declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
@@ -291,7 +419,6 @@ declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
|
291
419
|
genesisHash: string;
|
|
292
420
|
specVersion: number;
|
|
293
421
|
chainName: string;
|
|
294
|
-
metadataRpc: `0x${string}`;
|
|
295
422
|
txVersion: number;
|
|
296
423
|
}
|
|
297
424
|
declare class Celo extends Mainnet implements EthereumNetwork {
|
|
@@ -300,6 +427,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
300
427
|
explorerUrl: string;
|
|
301
428
|
accountExplorerUrl: string;
|
|
302
429
|
chainId: number;
|
|
430
|
+
nativeCoinOperationHashPrefix: string;
|
|
431
|
+
tokenOperationHashPrefix: string;
|
|
303
432
|
}
|
|
304
433
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
305
434
|
name: string;
|
|
@@ -307,6 +436,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
307
436
|
explorerUrl: string;
|
|
308
437
|
accountExplorerUrl: string;
|
|
309
438
|
chainId: number;
|
|
439
|
+
nativeCoinOperationHashPrefix: string;
|
|
440
|
+
tokenOperationHashPrefix: string;
|
|
310
441
|
}
|
|
311
442
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
312
443
|
name: string;
|
|
@@ -325,10 +456,13 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
325
456
|
family: CoinFamily;
|
|
326
457
|
explorerUrl: string;
|
|
327
458
|
accountExplorerUrl: string;
|
|
459
|
+
blockExplorerUrl: string;
|
|
328
460
|
chainId: number;
|
|
329
461
|
batcherContractAddress: string;
|
|
330
462
|
forwarderFactoryAddress: string;
|
|
331
463
|
forwarderImplementationAddress: string;
|
|
464
|
+
nativeCoinOperationHashPrefix: string;
|
|
465
|
+
tokenOperationHashPrefix: string;
|
|
332
466
|
}
|
|
333
467
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
334
468
|
name: string;
|
|
@@ -345,6 +479,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
345
479
|
batcherContractAddress: string;
|
|
346
480
|
forwarderFactoryAddress: string;
|
|
347
481
|
forwarderImplementationAddress: string;
|
|
482
|
+
nativeCoinOperationHashPrefix: string;
|
|
483
|
+
tokenOperationHashPrefix: string;
|
|
348
484
|
}
|
|
349
485
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
350
486
|
name: string;
|
|
@@ -361,16 +497,47 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
361
497
|
batcherContractAddress: string;
|
|
362
498
|
forwarderFactoryAddress: string;
|
|
363
499
|
forwarderImplementationAddress: string;
|
|
500
|
+
nativeCoinOperationHashPrefix: string;
|
|
501
|
+
tokenOperationHashPrefix: string;
|
|
364
502
|
}
|
|
365
503
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
366
504
|
name: string;
|
|
367
505
|
family: CoinFamily;
|
|
368
506
|
explorerUrl: string;
|
|
369
507
|
accountExplorerUrl: string;
|
|
508
|
+
blockExplorerUrl: string;
|
|
509
|
+
chainId: number;
|
|
510
|
+
batcherContractAddress: string;
|
|
511
|
+
forwarderFactoryAddress: string;
|
|
512
|
+
forwarderImplementationAddress: string;
|
|
513
|
+
nativeCoinOperationHashPrefix: string;
|
|
514
|
+
tokenOperationHashPrefix: string;
|
|
515
|
+
}
|
|
516
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
517
|
+
name: string;
|
|
518
|
+
family: CoinFamily;
|
|
519
|
+
explorerUrl: string;
|
|
520
|
+
accountExplorerUrl: string;
|
|
521
|
+
blockExplorerUrl: string;
|
|
522
|
+
chainId: number;
|
|
523
|
+
batcherContractAddress: string;
|
|
524
|
+
forwarderFactoryAddress: string;
|
|
525
|
+
forwarderImplementationAddress: string;
|
|
526
|
+
nativeCoinOperationHashPrefix: string;
|
|
527
|
+
tokenOperationHashPrefix: string;
|
|
528
|
+
}
|
|
529
|
+
declare class Hoodi extends Testnet implements EthereumNetwork {
|
|
530
|
+
name: string;
|
|
531
|
+
family: CoinFamily;
|
|
532
|
+
explorerUrl: string;
|
|
533
|
+
accountExplorerUrl: string;
|
|
534
|
+
blockExplorerUrl: string;
|
|
370
535
|
chainId: number;
|
|
371
536
|
batcherContractAddress: string;
|
|
372
537
|
forwarderFactoryAddress: string;
|
|
373
538
|
forwarderImplementationAddress: string;
|
|
539
|
+
nativeCoinOperationHashPrefix: string;
|
|
540
|
+
tokenOperationHashPrefix: string;
|
|
374
541
|
}
|
|
375
542
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
543
|
name: string;
|
|
@@ -378,6 +545,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
545
|
explorerUrl: string;
|
|
379
546
|
accountExplorerUrl: string;
|
|
380
547
|
chainId: number;
|
|
548
|
+
nativeCoinOperationHashPrefix: string;
|
|
549
|
+
tokenOperationHashPrefix: string;
|
|
381
550
|
}
|
|
382
551
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
552
|
name: string;
|
|
@@ -385,6 +554,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
554
|
explorerUrl: string;
|
|
386
555
|
accountExplorerUrl: string;
|
|
387
556
|
chainId: number;
|
|
557
|
+
nativeCoinOperationHashPrefix: string;
|
|
558
|
+
tokenOperationHashPrefix: string;
|
|
388
559
|
}
|
|
389
560
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
561
|
name: string;
|
|
@@ -434,6 +605,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
605
|
explorerUrl: string;
|
|
435
606
|
accountExplorerUrl: string;
|
|
436
607
|
chainId: number;
|
|
608
|
+
nativeCoinOperationHashPrefix: string;
|
|
609
|
+
tokenOperationHashPrefix: string;
|
|
437
610
|
}
|
|
438
611
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
612
|
name: string;
|
|
@@ -441,6 +614,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
614
|
explorerUrl: string;
|
|
442
615
|
accountExplorerUrl: string;
|
|
443
616
|
chainId: number;
|
|
617
|
+
nativeCoinOperationHashPrefix: string;
|
|
618
|
+
tokenOperationHashPrefix: string;
|
|
444
619
|
}
|
|
445
620
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
621
|
name: string;
|
|
@@ -482,6 +657,186 @@ declare class AtomTestnet extends Testnet implements AccountNetwork {
|
|
|
482
657
|
family: CoinFamily;
|
|
483
658
|
explorerUrl: string;
|
|
484
659
|
}
|
|
660
|
+
declare class Osmo extends Mainnet implements AccountNetwork {
|
|
661
|
+
name: string;
|
|
662
|
+
family: CoinFamily;
|
|
663
|
+
explorerUrl: string;
|
|
664
|
+
}
|
|
665
|
+
declare class OsmoTestnet extends Testnet implements AccountNetwork {
|
|
666
|
+
name: string;
|
|
667
|
+
family: CoinFamily;
|
|
668
|
+
explorerUrl: string;
|
|
669
|
+
}
|
|
670
|
+
declare class Tia extends Mainnet implements AccountNetwork {
|
|
671
|
+
name: string;
|
|
672
|
+
family: CoinFamily;
|
|
673
|
+
explorerUrl: string;
|
|
674
|
+
}
|
|
675
|
+
declare class TiaTestnet extends Testnet implements AccountNetwork {
|
|
676
|
+
name: string;
|
|
677
|
+
family: CoinFamily;
|
|
678
|
+
explorerUrl: string;
|
|
679
|
+
}
|
|
680
|
+
declare class Hash extends Mainnet implements AccountNetwork {
|
|
681
|
+
name: string;
|
|
682
|
+
family: CoinFamily;
|
|
683
|
+
explorerUrl: string;
|
|
684
|
+
}
|
|
685
|
+
declare class HashTestnet extends Testnet implements AccountNetwork {
|
|
686
|
+
name: string;
|
|
687
|
+
family: CoinFamily;
|
|
688
|
+
explorerUrl: string;
|
|
689
|
+
}
|
|
690
|
+
declare class Bld extends Mainnet implements AccountNetwork {
|
|
691
|
+
name: string;
|
|
692
|
+
family: CoinFamily;
|
|
693
|
+
explorerUrl: string;
|
|
694
|
+
}
|
|
695
|
+
declare class BldTestnet extends Testnet implements AccountNetwork {
|
|
696
|
+
name: string;
|
|
697
|
+
family: CoinFamily;
|
|
698
|
+
explorerUrl: string;
|
|
699
|
+
}
|
|
700
|
+
declare class Sei extends Mainnet implements AccountNetwork {
|
|
701
|
+
name: string;
|
|
702
|
+
family: CoinFamily;
|
|
703
|
+
explorerUrl: string;
|
|
704
|
+
}
|
|
705
|
+
declare class SeiTestnet extends Testnet implements AccountNetwork {
|
|
706
|
+
name: string;
|
|
707
|
+
family: CoinFamily;
|
|
708
|
+
explorerUrl: string;
|
|
709
|
+
}
|
|
710
|
+
declare class Zeta extends Mainnet implements AccountNetwork {
|
|
711
|
+
name: string;
|
|
712
|
+
family: CoinFamily;
|
|
713
|
+
explorerUrl: string;
|
|
714
|
+
}
|
|
715
|
+
declare class ZetaTestnet extends Testnet implements AccountNetwork {
|
|
716
|
+
name: string;
|
|
717
|
+
family: CoinFamily;
|
|
718
|
+
explorerUrl: string;
|
|
719
|
+
}
|
|
720
|
+
declare class Injective extends Mainnet implements AccountNetwork {
|
|
721
|
+
name: string;
|
|
722
|
+
family: CoinFamily;
|
|
723
|
+
explorerUrl: string;
|
|
724
|
+
}
|
|
725
|
+
declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
726
|
+
name: string;
|
|
727
|
+
family: CoinFamily;
|
|
728
|
+
explorerUrl: string;
|
|
729
|
+
}
|
|
730
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
731
|
+
name: string;
|
|
732
|
+
family: CoinFamily;
|
|
733
|
+
explorerUrl: string;
|
|
734
|
+
}
|
|
735
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
736
|
+
name: string;
|
|
737
|
+
family: CoinFamily;
|
|
738
|
+
explorerUrl: string;
|
|
739
|
+
}
|
|
740
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
741
|
+
name: string;
|
|
742
|
+
family: CoinFamily;
|
|
743
|
+
explorerUrl: string;
|
|
744
|
+
}
|
|
745
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
746
|
+
name: string;
|
|
747
|
+
family: CoinFamily;
|
|
748
|
+
explorerUrl: string;
|
|
749
|
+
}
|
|
750
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
751
|
+
name: string;
|
|
752
|
+
family: CoinFamily;
|
|
753
|
+
explorerUrl: string;
|
|
754
|
+
}
|
|
755
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
756
|
+
name: string;
|
|
757
|
+
family: CoinFamily;
|
|
758
|
+
explorerUrl: string;
|
|
759
|
+
}
|
|
760
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
761
|
+
name: string;
|
|
762
|
+
family: CoinFamily;
|
|
763
|
+
explorerUrl: string;
|
|
764
|
+
}
|
|
765
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
766
|
+
name: string;
|
|
767
|
+
family: CoinFamily;
|
|
768
|
+
explorerUrl: string;
|
|
769
|
+
}
|
|
770
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
771
|
+
name: string;
|
|
772
|
+
family: CoinFamily;
|
|
773
|
+
explorerUrl: string;
|
|
774
|
+
}
|
|
775
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
776
|
+
name: string;
|
|
777
|
+
family: CoinFamily;
|
|
778
|
+
explorerUrl: string;
|
|
779
|
+
}
|
|
780
|
+
declare class Mantra extends Mainnet implements AccountNetwork {
|
|
781
|
+
name: string;
|
|
782
|
+
family: CoinFamily;
|
|
783
|
+
explorerUrl: string;
|
|
784
|
+
}
|
|
785
|
+
declare class MantraTestnet extends Testnet implements AccountNetwork {
|
|
786
|
+
name: string;
|
|
787
|
+
family: CoinFamily;
|
|
788
|
+
explorerUrl: string;
|
|
789
|
+
}
|
|
790
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
791
|
+
name: string;
|
|
792
|
+
family: CoinFamily;
|
|
793
|
+
explorerUrl: string;
|
|
794
|
+
}
|
|
795
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
796
|
+
name: string;
|
|
797
|
+
family: CoinFamily;
|
|
798
|
+
explorerUrl: string;
|
|
799
|
+
}
|
|
800
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
801
|
+
name: string;
|
|
802
|
+
family: CoinFamily;
|
|
803
|
+
explorerUrl: string;
|
|
804
|
+
}
|
|
805
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
806
|
+
name: string;
|
|
807
|
+
family: CoinFamily;
|
|
808
|
+
explorerUrl: string;
|
|
809
|
+
}
|
|
810
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
811
|
+
name: string;
|
|
812
|
+
family: CoinFamily;
|
|
813
|
+
explorerUrl: string;
|
|
814
|
+
}
|
|
815
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
816
|
+
name: string;
|
|
817
|
+
family: CoinFamily;
|
|
818
|
+
explorerUrl: string;
|
|
819
|
+
}
|
|
820
|
+
declare class Asi extends Mainnet implements AccountNetwork {
|
|
821
|
+
name: string;
|
|
822
|
+
family: CoinFamily;
|
|
823
|
+
explorerUrl: string;
|
|
824
|
+
}
|
|
825
|
+
declare class AsiTestnet extends Testnet implements AccountNetwork {
|
|
826
|
+
name: string;
|
|
827
|
+
family: CoinFamily;
|
|
828
|
+
explorerUrl: string;
|
|
829
|
+
}
|
|
830
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
831
|
+
name: string;
|
|
832
|
+
family: CoinFamily;
|
|
833
|
+
explorerUrl: string;
|
|
834
|
+
}
|
|
835
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
836
|
+
name: string;
|
|
837
|
+
family: CoinFamily;
|
|
838
|
+
explorerUrl: string;
|
|
839
|
+
}
|
|
485
840
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
486
841
|
name: string;
|
|
487
842
|
family: CoinFamily;
|
|
@@ -516,9 +871,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
516
871
|
family: CoinFamily;
|
|
517
872
|
explorerUrl: undefined;
|
|
518
873
|
}
|
|
874
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
875
|
+
name: string;
|
|
876
|
+
family: CoinFamily;
|
|
877
|
+
explorerUrl: string;
|
|
878
|
+
}
|
|
879
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
880
|
+
name: string;
|
|
881
|
+
family: CoinFamily;
|
|
882
|
+
explorerUrl: string;
|
|
883
|
+
specName: SubstrateSpecNameType;
|
|
884
|
+
genesisHash: string;
|
|
885
|
+
specVersion: number;
|
|
886
|
+
chainName: string;
|
|
887
|
+
txVersion: number;
|
|
888
|
+
}
|
|
519
889
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
520
890
|
name: string;
|
|
521
891
|
family: CoinFamily;
|
|
892
|
+
accountExplorerUrl: string;
|
|
522
893
|
explorerUrl: string;
|
|
523
894
|
maxFeeLimit: string;
|
|
524
895
|
contractCallFeeLimit: string;
|
|
@@ -526,6 +897,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
526
897
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
527
898
|
name: string;
|
|
528
899
|
family: CoinFamily;
|
|
900
|
+
accountExplorerUrl: string;
|
|
529
901
|
explorerUrl: string;
|
|
530
902
|
maxFeeLimit: string;
|
|
531
903
|
contractCallFeeLimit: string;
|
|
@@ -588,6 +960,9 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
588
960
|
forwarderImplementationAddress: string;
|
|
589
961
|
walletFactoryAddress: string;
|
|
590
962
|
walletImplementationAddress: string;
|
|
963
|
+
batcherContractAddress: string;
|
|
964
|
+
nativeCoinOperationHashPrefix: string;
|
|
965
|
+
tokenOperationHashPrefix: string;
|
|
591
966
|
}
|
|
592
967
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
593
968
|
name: string;
|
|
@@ -599,21 +974,527 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
599
974
|
forwarderImplementationAddress: string;
|
|
600
975
|
walletFactoryAddress: string;
|
|
601
976
|
walletImplementationAddress: string;
|
|
977
|
+
batcherContractAddress: string;
|
|
978
|
+
nativeCoinOperationHashPrefix: string;
|
|
979
|
+
tokenOperationHashPrefix: string;
|
|
980
|
+
}
|
|
981
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
982
|
+
name: string;
|
|
983
|
+
family: CoinFamily;
|
|
984
|
+
explorerUrl: string;
|
|
985
|
+
accountExplorerUrl: string;
|
|
986
|
+
chainId: number;
|
|
987
|
+
nativeCoinOperationHashPrefix: string;
|
|
988
|
+
tokenOperationHashPrefix: string;
|
|
989
|
+
forwarderFactoryAddress: string;
|
|
990
|
+
forwarderImplementationAddress: string;
|
|
991
|
+
walletFactoryAddress: string;
|
|
992
|
+
walletImplementationAddress: string;
|
|
993
|
+
batcherContractAddress: string;
|
|
994
|
+
}
|
|
995
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
996
|
+
name: string;
|
|
997
|
+
family: CoinFamily;
|
|
998
|
+
explorerUrl: string;
|
|
999
|
+
accountExplorerUrl: string;
|
|
1000
|
+
chainId: number;
|
|
1001
|
+
nativeCoinOperationHashPrefix: string;
|
|
1002
|
+
tokenOperationHashPrefix: string;
|
|
1003
|
+
forwarderFactoryAddress: string;
|
|
1004
|
+
forwarderImplementationAddress: string;
|
|
1005
|
+
walletFactoryAddress: string;
|
|
1006
|
+
walletImplementationAddress: string;
|
|
1007
|
+
batcherContractAddress: string;
|
|
1008
|
+
}
|
|
1009
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
1010
|
+
name: string;
|
|
1011
|
+
family: CoinFamily;
|
|
1012
|
+
explorerUrl: string;
|
|
1013
|
+
accountExplorerUrl: string;
|
|
1014
|
+
chainId: number;
|
|
1015
|
+
nativeCoinOperationHashPrefix: string;
|
|
1016
|
+
tokenOperationHashPrefix: string;
|
|
1017
|
+
}
|
|
1018
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
1019
|
+
name: string;
|
|
1020
|
+
family: CoinFamily;
|
|
1021
|
+
explorerUrl: string;
|
|
1022
|
+
accountExplorerUrl: string;
|
|
1023
|
+
chainId: number;
|
|
1024
|
+
nativeCoinOperationHashPrefix: string;
|
|
1025
|
+
tokenOperationHashPrefix: string;
|
|
1026
|
+
forwarderFactoryAddress: string;
|
|
1027
|
+
forwarderImplementationAddress: string;
|
|
1028
|
+
walletFactoryAddress: string;
|
|
1029
|
+
walletImplementationAddress: string;
|
|
1030
|
+
}
|
|
1031
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
1032
|
+
name: string;
|
|
1033
|
+
family: CoinFamily;
|
|
1034
|
+
explorerUrl: string;
|
|
1035
|
+
accountExplorerUrl: string;
|
|
1036
|
+
chainId: number;
|
|
1037
|
+
nativeCoinOperationHashPrefix: string;
|
|
1038
|
+
tokenOperationHashPrefix: string;
|
|
1039
|
+
batcherContractAddress: string;
|
|
1040
|
+
forwarderFactoryAddress: string;
|
|
1041
|
+
forwarderImplementationAddress: string;
|
|
1042
|
+
}
|
|
1043
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1044
|
+
name: string;
|
|
1045
|
+
family: CoinFamily;
|
|
1046
|
+
explorerUrl: string;
|
|
1047
|
+
accountExplorerUrl: string;
|
|
1048
|
+
chainId: number;
|
|
1049
|
+
nativeCoinOperationHashPrefix: string;
|
|
1050
|
+
tokenOperationHashPrefix: string;
|
|
1051
|
+
batcherContractAddress: string;
|
|
1052
|
+
forwarderFactoryAddress: string;
|
|
1053
|
+
forwarderImplementationAddress: string;
|
|
1054
|
+
}
|
|
1055
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1056
|
+
name: string;
|
|
1057
|
+
family: CoinFamily;
|
|
1058
|
+
explorerUrl: string;
|
|
1059
|
+
accountExplorerUrl: string;
|
|
1060
|
+
chainId: number;
|
|
1061
|
+
nativeCoinOperationHashPrefix: string;
|
|
1062
|
+
batcherContractAddress: string;
|
|
1063
|
+
forwarderFactoryAddress: string;
|
|
1064
|
+
forwarderImplementationAddress: string;
|
|
1065
|
+
}
|
|
1066
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1067
|
+
name: string;
|
|
1068
|
+
family: CoinFamily;
|
|
1069
|
+
explorerUrl: string;
|
|
1070
|
+
accountExplorerUrl: string;
|
|
1071
|
+
chainId: number;
|
|
1072
|
+
nativeCoinOperationHashPrefix: string;
|
|
1073
|
+
batcherContractAddress: string;
|
|
1074
|
+
forwarderFactoryAddress: string;
|
|
1075
|
+
forwarderImplementationAddress: string;
|
|
1076
|
+
}
|
|
1077
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1078
|
+
name: string;
|
|
1079
|
+
family: CoinFamily;
|
|
1080
|
+
explorerUrl: string;
|
|
1081
|
+
accountExplorerUrl: string;
|
|
1082
|
+
chainId: number;
|
|
1083
|
+
nativeCoinOperationHashPrefix: string;
|
|
1084
|
+
batcherContractAddress: string;
|
|
1085
|
+
forwarderFactoryAddress: string;
|
|
1086
|
+
forwarderImplementationAddress: string;
|
|
1087
|
+
}
|
|
1088
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1089
|
+
name: string;
|
|
1090
|
+
family: CoinFamily;
|
|
1091
|
+
explorerUrl: string;
|
|
1092
|
+
accountExplorerUrl: string;
|
|
1093
|
+
chainId: number;
|
|
1094
|
+
nativeCoinOperationHashPrefix: string;
|
|
1095
|
+
batcherContractAddress: string;
|
|
1096
|
+
forwarderFactoryAddress: string;
|
|
1097
|
+
forwarderImplementationAddress: string;
|
|
1098
|
+
}
|
|
1099
|
+
declare class ApeChain extends Mainnet implements EthereumNetwork {
|
|
1100
|
+
name: string;
|
|
1101
|
+
family: CoinFamily;
|
|
1102
|
+
explorerUrl: string;
|
|
1103
|
+
accountExplorerUrl: string;
|
|
1104
|
+
chainId: number;
|
|
1105
|
+
nativeCoinOperationHashPrefix: string;
|
|
1106
|
+
}
|
|
1107
|
+
declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1108
|
+
name: string;
|
|
1109
|
+
family: CoinFamily;
|
|
1110
|
+
explorerUrl: string;
|
|
1111
|
+
accountExplorerUrl: string;
|
|
1112
|
+
chainId: number;
|
|
1113
|
+
nativeCoinOperationHashPrefix: string;
|
|
1114
|
+
}
|
|
1115
|
+
declare class Pharos extends Mainnet implements EthereumNetwork {
|
|
1116
|
+
name: string;
|
|
1117
|
+
family: CoinFamily;
|
|
1118
|
+
explorerUrl: string;
|
|
1119
|
+
accountExplorerUrl: string;
|
|
1120
|
+
chainId: number;
|
|
1121
|
+
nativeCoinOperationHashPrefix: string;
|
|
1122
|
+
}
|
|
1123
|
+
declare class PharosTestnet extends Testnet implements EthereumNetwork {
|
|
1124
|
+
name: string;
|
|
1125
|
+
family: CoinFamily;
|
|
1126
|
+
explorerUrl: string;
|
|
1127
|
+
accountExplorerUrl: string;
|
|
1128
|
+
chainId: number;
|
|
1129
|
+
nativeCoinOperationHashPrefix: string;
|
|
1130
|
+
}
|
|
1131
|
+
declare class Creditcoin extends Mainnet implements EthereumNetwork {
|
|
1132
|
+
name: string;
|
|
1133
|
+
family: CoinFamily;
|
|
1134
|
+
explorerUrl: string;
|
|
1135
|
+
accountExplorerUrl: string;
|
|
1136
|
+
chainId: number;
|
|
1137
|
+
nativeCoinOperationHashPrefix: string;
|
|
1138
|
+
}
|
|
1139
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1140
|
+
name: string;
|
|
1141
|
+
family: CoinFamily;
|
|
1142
|
+
explorerUrl: string;
|
|
1143
|
+
accountExplorerUrl: string;
|
|
1144
|
+
chainId: number;
|
|
1145
|
+
nativeCoinOperationHashPrefix: string;
|
|
1146
|
+
}
|
|
1147
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1148
|
+
name: string;
|
|
1149
|
+
family: CoinFamily;
|
|
1150
|
+
explorerUrl: string;
|
|
1151
|
+
accountExplorerUrl: string;
|
|
1152
|
+
chainId: number;
|
|
1153
|
+
nativeCoinOperationHashPrefix: string;
|
|
1154
|
+
}
|
|
1155
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1156
|
+
name: string;
|
|
1157
|
+
family: CoinFamily;
|
|
1158
|
+
explorerUrl: string;
|
|
1159
|
+
accountExplorerUrl: string;
|
|
1160
|
+
chainId: number;
|
|
1161
|
+
nativeCoinOperationHashPrefix: string;
|
|
1162
|
+
}
|
|
1163
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1164
|
+
name: string;
|
|
1165
|
+
family: CoinFamily;
|
|
1166
|
+
explorerUrl: string;
|
|
1167
|
+
accountExplorerUrl: string;
|
|
1168
|
+
chainId: number;
|
|
1169
|
+
nativeCoinOperationHashPrefix: string;
|
|
1170
|
+
}
|
|
1171
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1172
|
+
name: string;
|
|
1173
|
+
family: CoinFamily;
|
|
1174
|
+
explorerUrl: string;
|
|
1175
|
+
accountExplorerUrl: string;
|
|
1176
|
+
chainId: number;
|
|
1177
|
+
nativeCoinOperationHashPrefix: string;
|
|
1178
|
+
}
|
|
1179
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1180
|
+
name: string;
|
|
1181
|
+
family: CoinFamily;
|
|
1182
|
+
explorerUrl: string;
|
|
1183
|
+
accountExplorerUrl: string;
|
|
1184
|
+
chainId: number;
|
|
1185
|
+
nativeCoinOperationHashPrefix: string;
|
|
1186
|
+
}
|
|
1187
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1188
|
+
name: string;
|
|
1189
|
+
family: CoinFamily;
|
|
1190
|
+
explorerUrl: string;
|
|
1191
|
+
accountExplorerUrl: string;
|
|
1192
|
+
chainId: number;
|
|
1193
|
+
nativeCoinOperationHashPrefix: string;
|
|
1194
|
+
}
|
|
1195
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1196
|
+
name: string;
|
|
1197
|
+
family: CoinFamily;
|
|
1198
|
+
explorerUrl: string;
|
|
1199
|
+
accountExplorerUrl: string;
|
|
1200
|
+
chainId: number;
|
|
1201
|
+
nativeCoinOperationHashPrefix: string;
|
|
1202
|
+
}
|
|
1203
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1204
|
+
name: string;
|
|
1205
|
+
family: CoinFamily;
|
|
1206
|
+
explorerUrl: string;
|
|
1207
|
+
accountExplorerUrl: string;
|
|
1208
|
+
chainId: number;
|
|
1209
|
+
nativeCoinOperationHashPrefix: string;
|
|
1210
|
+
}
|
|
1211
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1212
|
+
name: string;
|
|
1213
|
+
family: CoinFamily;
|
|
1214
|
+
explorerUrl: string;
|
|
1215
|
+
accountExplorerUrl: string;
|
|
1216
|
+
chainId: number;
|
|
1217
|
+
nativeCoinOperationHashPrefix: string;
|
|
1218
|
+
batcherContractAddress: string;
|
|
1219
|
+
forwarderFactoryAddress: string;
|
|
1220
|
+
forwarderImplementationAddress: string;
|
|
1221
|
+
}
|
|
1222
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1223
|
+
name: string;
|
|
1224
|
+
family: CoinFamily;
|
|
1225
|
+
explorerUrl: string;
|
|
1226
|
+
accountExplorerUrl: string;
|
|
1227
|
+
chainId: number;
|
|
1228
|
+
nativeCoinOperationHashPrefix: string;
|
|
1229
|
+
batcherContractAddress: string;
|
|
1230
|
+
forwarderFactoryAddress: string;
|
|
1231
|
+
forwarderImplementationAddress: string;
|
|
1232
|
+
}
|
|
1233
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1234
|
+
name: string;
|
|
1235
|
+
family: CoinFamily;
|
|
1236
|
+
explorerUrl: string;
|
|
1237
|
+
accountExplorerUrl: string;
|
|
1238
|
+
chainId: number;
|
|
1239
|
+
nativeCoinOperationHashPrefix: string;
|
|
1240
|
+
batcherContractAddress: string;
|
|
1241
|
+
forwarderFactoryAddress: string;
|
|
1242
|
+
forwarderImplementationAddress: string;
|
|
1243
|
+
}
|
|
1244
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1245
|
+
name: string;
|
|
1246
|
+
family: CoinFamily;
|
|
1247
|
+
explorerUrl: string;
|
|
1248
|
+
accountExplorerUrl: string;
|
|
1249
|
+
chainId: number;
|
|
1250
|
+
nativeCoinOperationHashPrefix: string;
|
|
1251
|
+
batcherContractAddress: string;
|
|
1252
|
+
forwarderFactoryAddress: string;
|
|
1253
|
+
forwarderImplementationAddress: string;
|
|
1254
|
+
}
|
|
1255
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1256
|
+
name: string;
|
|
1257
|
+
family: CoinFamily;
|
|
1258
|
+
explorerUrl: string;
|
|
1259
|
+
accountExplorerUrl: string;
|
|
1260
|
+
chainId: number;
|
|
1261
|
+
nativeCoinOperationHashPrefix: string;
|
|
1262
|
+
walletFactoryAddress: string;
|
|
1263
|
+
batcherContractAddress: string;
|
|
1264
|
+
forwarderFactoryAddress: string;
|
|
1265
|
+
forwarderImplementationAddress: string;
|
|
1266
|
+
walletImplementationAddress: string;
|
|
1267
|
+
}
|
|
1268
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1269
|
+
name: string;
|
|
1270
|
+
family: CoinFamily;
|
|
1271
|
+
explorerUrl: string;
|
|
1272
|
+
chainId: number;
|
|
1273
|
+
nativeCoinOperationHashPrefix: string;
|
|
1274
|
+
walletImplementationAddress: string;
|
|
1275
|
+
batcherContractAddress: string;
|
|
1276
|
+
forwarderFactoryAddress: string;
|
|
1277
|
+
forwarderImplementationAddress: string;
|
|
1278
|
+
}
|
|
1279
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1280
|
+
name: string;
|
|
1281
|
+
family: CoinFamily;
|
|
1282
|
+
explorerUrl: string;
|
|
1283
|
+
accountExplorerUrl: string;
|
|
1284
|
+
chainId: number;
|
|
1285
|
+
nativeCoinOperationHashPrefix: string;
|
|
1286
|
+
walletImplementationAddress: string;
|
|
1287
|
+
batcherContractAddress: string;
|
|
1288
|
+
forwarderFactoryAddress: string;
|
|
1289
|
+
forwarderImplementationAddress: string;
|
|
1290
|
+
}
|
|
1291
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1292
|
+
name: string;
|
|
1293
|
+
family: CoinFamily;
|
|
1294
|
+
explorerUrl: string;
|
|
1295
|
+
accountExplorerUrl: string;
|
|
1296
|
+
chainId: number;
|
|
1297
|
+
nativeCoinOperationHashPrefix: string;
|
|
1298
|
+
batcherContractAddress: string;
|
|
1299
|
+
forwarderFactoryAddress: string;
|
|
1300
|
+
forwarderImplementationAddress: string;
|
|
1301
|
+
walletImplementationAddress: string;
|
|
1302
|
+
}
|
|
1303
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1304
|
+
name: string;
|
|
1305
|
+
family: CoinFamily;
|
|
1306
|
+
explorerUrl: string;
|
|
1307
|
+
accountExplorerUrl: string;
|
|
1308
|
+
chainId: number;
|
|
1309
|
+
nativeCoinOperationHashPrefix: string;
|
|
1310
|
+
walletImplementationAddress: string;
|
|
1311
|
+
walletFactoryAddress: string;
|
|
1312
|
+
batcherContractAddress: string;
|
|
1313
|
+
forwarderFactoryAddress: string;
|
|
1314
|
+
forwarderImplementationAddress: string;
|
|
1315
|
+
}
|
|
1316
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1317
|
+
name: string;
|
|
1318
|
+
family: CoinFamily;
|
|
1319
|
+
explorerUrl: string;
|
|
1320
|
+
accountExplorerUrl: string;
|
|
1321
|
+
chainId: number;
|
|
1322
|
+
nativeCoinOperationHashPrefix: string;
|
|
1323
|
+
walletFactoryAddress: string;
|
|
1324
|
+
batcherContractAddress: string;
|
|
1325
|
+
forwarderFactoryAddress: string;
|
|
1326
|
+
forwarderImplementationAddress: string;
|
|
1327
|
+
walletImplementationAddress: string;
|
|
1328
|
+
}
|
|
1329
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1330
|
+
name: string;
|
|
1331
|
+
family: CoinFamily;
|
|
1332
|
+
explorerUrl: string;
|
|
1333
|
+
accountExplorerUrl: string;
|
|
1334
|
+
chainId: number;
|
|
1335
|
+
nativeCoinOperationHashPrefix: string;
|
|
1336
|
+
}
|
|
1337
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1338
|
+
name: string;
|
|
1339
|
+
family: CoinFamily;
|
|
1340
|
+
explorerUrl: string;
|
|
1341
|
+
accountExplorerUrl: string;
|
|
1342
|
+
chainId: number;
|
|
1343
|
+
nativeCoinOperationHashPrefix: string;
|
|
1344
|
+
}
|
|
1345
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1346
|
+
name: string;
|
|
1347
|
+
family: CoinFamily;
|
|
1348
|
+
explorerUrl: string;
|
|
1349
|
+
chainId: number;
|
|
1350
|
+
nativeCoinOperationHashPrefix: string;
|
|
1351
|
+
}
|
|
1352
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1353
|
+
name: string;
|
|
1354
|
+
family: CoinFamily;
|
|
1355
|
+
explorerUrl: string;
|
|
1356
|
+
accountExplorerUrl: string;
|
|
1357
|
+
chainId: number;
|
|
1358
|
+
nativeCoinOperationHashPrefix: string;
|
|
1359
|
+
walletFactoryAddress: string;
|
|
1360
|
+
batcherContractAddress: string;
|
|
1361
|
+
forwarderFactoryAddress: string;
|
|
1362
|
+
forwarderImplementationAddress: string;
|
|
1363
|
+
walletImplementationAddress: string;
|
|
1364
|
+
}
|
|
1365
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1366
|
+
name: string;
|
|
1367
|
+
family: CoinFamily;
|
|
1368
|
+
explorerUrl: string;
|
|
1369
|
+
accountExplorerUrl: string;
|
|
1370
|
+
chainId: number;
|
|
1371
|
+
nativeCoinOperationHashPrefix: string;
|
|
1372
|
+
batcherContractAddress: string;
|
|
1373
|
+
forwarderFactoryAddress: string;
|
|
1374
|
+
forwarderImplementationAddress: string;
|
|
1375
|
+
}
|
|
1376
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1377
|
+
name: string;
|
|
1378
|
+
family: CoinFamily;
|
|
1379
|
+
explorerUrl: string;
|
|
1380
|
+
accountExplorerUrl: string;
|
|
1381
|
+
chainId: number;
|
|
1382
|
+
nativeCoinOperationHashPrefix: string;
|
|
1383
|
+
batcherContractAddress: string;
|
|
1384
|
+
forwarderFactoryAddress: string;
|
|
1385
|
+
forwarderImplementationAddress: string;
|
|
1386
|
+
}
|
|
1387
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1388
|
+
name: string;
|
|
1389
|
+
family: CoinFamily;
|
|
1390
|
+
explorerUrl: string;
|
|
1391
|
+
accountExplorerUrl: string;
|
|
1392
|
+
chainId: number;
|
|
1393
|
+
nativeCoinOperationHashPrefix: string;
|
|
1394
|
+
batcherContractAddress: string;
|
|
1395
|
+
forwarderFactoryAddress: string;
|
|
1396
|
+
forwarderImplementationAddress: string;
|
|
1397
|
+
}
|
|
1398
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1399
|
+
name: string;
|
|
1400
|
+
family: CoinFamily;
|
|
1401
|
+
explorerUrl: string;
|
|
1402
|
+
accountExplorerUrl: string;
|
|
1403
|
+
chainId: number;
|
|
1404
|
+
nativeCoinOperationHashPrefix: string;
|
|
1405
|
+
batcherContractAddress: string;
|
|
1406
|
+
forwarderFactoryAddress: string;
|
|
1407
|
+
forwarderImplementationAddress: string;
|
|
1408
|
+
}
|
|
1409
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1410
|
+
name: string;
|
|
1411
|
+
family: CoinFamily;
|
|
1412
|
+
explorerUrl: string;
|
|
1413
|
+
accountExplorerUrl: string;
|
|
1414
|
+
chainId: number;
|
|
1415
|
+
nativeCoinOperationHashPrefix: string;
|
|
1416
|
+
tokenOperationHashPrefix: string;
|
|
1417
|
+
forwarderFactoryAddress: string;
|
|
1418
|
+
forwarderImplementationAddress: string;
|
|
1419
|
+
walletFactoryAddress: string;
|
|
1420
|
+
walletImplementationAddress: string;
|
|
1421
|
+
}
|
|
1422
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1423
|
+
name: string;
|
|
1424
|
+
family: CoinFamily;
|
|
1425
|
+
explorerUrl: string;
|
|
1426
|
+
accountExplorerUrl: string;
|
|
1427
|
+
chainId: number;
|
|
1428
|
+
nativeCoinOperationHashPrefix: string;
|
|
1429
|
+
tokenOperationHashPrefix: string;
|
|
1430
|
+
forwarderFactoryAddress: string;
|
|
1431
|
+
forwarderImplementationAddress: string;
|
|
1432
|
+
walletFactoryAddress: string;
|
|
1433
|
+
walletImplementationAddress: string;
|
|
1434
|
+
}
|
|
1435
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1436
|
+
name: string;
|
|
1437
|
+
family: CoinFamily;
|
|
1438
|
+
explorerUrl: string;
|
|
1439
|
+
specName: string;
|
|
1440
|
+
genesisHash: string;
|
|
1441
|
+
specVersion: number;
|
|
1442
|
+
chainName: string;
|
|
1443
|
+
txVersion: number;
|
|
1444
|
+
}
|
|
1445
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1446
|
+
name: string;
|
|
1447
|
+
family: CoinFamily;
|
|
1448
|
+
explorerUrl: string;
|
|
1449
|
+
specName: SubstrateSpecNameType;
|
|
1450
|
+
genesisHash: string;
|
|
1451
|
+
specVersion: number;
|
|
1452
|
+
chainName: string;
|
|
1453
|
+
txVersion: number;
|
|
1454
|
+
}
|
|
1455
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1456
|
+
name: string;
|
|
1457
|
+
family: CoinFamily;
|
|
1458
|
+
explorerUrl: string;
|
|
1459
|
+
accountExplorerUrl: string;
|
|
1460
|
+
chainId: number;
|
|
1461
|
+
forwarderFactoryAddress: string;
|
|
1462
|
+
forwarderImplementationAddress: string;
|
|
1463
|
+
}
|
|
1464
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1465
|
+
name: string;
|
|
1466
|
+
family: CoinFamily;
|
|
1467
|
+
explorerUrl: string;
|
|
1468
|
+
accountExplorerUrl: string;
|
|
1469
|
+
chainId: number;
|
|
1470
|
+
forwarderFactoryAddress: string;
|
|
1471
|
+
forwarderImplementationAddress: string;
|
|
602
1472
|
}
|
|
603
1473
|
export declare const Networks: {
|
|
604
1474
|
main: {
|
|
605
1475
|
ada: Readonly<Ada>;
|
|
606
1476
|
algorand: Readonly<Algorand>;
|
|
1477
|
+
apechain: Readonly<ApeChain>;
|
|
1478
|
+
apt: Readonly<Apt>;
|
|
1479
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1480
|
+
asi: Readonly<Asi>;
|
|
607
1481
|
atom: Readonly<Atom>;
|
|
608
1482
|
avalancheC: Readonly<AvalancheC>;
|
|
609
1483
|
avalancheP: Readonly<AvalancheP>;
|
|
1484
|
+
baby: Readonly<Baby>;
|
|
1485
|
+
basechain: Readonly<BaseChain>;
|
|
610
1486
|
bitcoin: Readonly<Bitcoin>;
|
|
611
1487
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
612
1488
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
613
1489
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1490
|
+
bera: Readonly<Berachain>;
|
|
1491
|
+
bld: Readonly<Bld>;
|
|
614
1492
|
bsc: Readonly<BinanceSmartChain>;
|
|
615
1493
|
casper: Readonly<Casper>;
|
|
616
1494
|
celo: Readonly<Celo>;
|
|
1495
|
+
coredao: Readonly<Coredao>;
|
|
1496
|
+
coreum: Readonly<Coreum>;
|
|
1497
|
+
cronos: Readonly<Cronos>;
|
|
617
1498
|
dash: Readonly<Dash>;
|
|
618
1499
|
dogecoin: Readonly<Dogecoin>;
|
|
619
1500
|
dot: Readonly<Polkadot>;
|
|
@@ -624,60 +1505,148 @@ export declare const Networks: {
|
|
|
624
1505
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
625
1506
|
ethereumW: Readonly<EthereumW>;
|
|
626
1507
|
fiat: Readonly<Fiat>;
|
|
1508
|
+
fetchai: Readonly<FetchAi>;
|
|
1509
|
+
flr: Readonly<Flare>;
|
|
1510
|
+
hash: Readonly<Hash>;
|
|
627
1511
|
hedera: Readonly<Hedera>;
|
|
1512
|
+
icp: Readonly<Icp>;
|
|
1513
|
+
initia: Readonly<Initia>;
|
|
1514
|
+
injective: Readonly<Injective>;
|
|
1515
|
+
irys: Readonly<Irys>;
|
|
1516
|
+
islm: Readonly<Islm>;
|
|
1517
|
+
kaia: Readonly<Kaia>;
|
|
1518
|
+
kava: Readonly<Kava>;
|
|
1519
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
628
1520
|
litecoin: Readonly<Litecoin>;
|
|
1521
|
+
mon: Readonly<Monad>;
|
|
1522
|
+
mantra: Readonly<Mantra>;
|
|
629
1523
|
polygon: Readonly<Polygon>;
|
|
1524
|
+
polyx: Readonly<Polymesh>;
|
|
1525
|
+
phrs: Readonly<Pharos>;
|
|
1526
|
+
ctc: Readonly<Creditcoin>;
|
|
1527
|
+
hypeevm: Readonly<HypeEVM>;
|
|
1528
|
+
oas: Readonly<Oas>;
|
|
630
1529
|
ofc: Readonly<Ofc>;
|
|
1530
|
+
optimism: Readonly<Optimism>;
|
|
1531
|
+
osmo: Readonly<Osmo>;
|
|
631
1532
|
rbtc: Readonly<Rbtc>;
|
|
1533
|
+
rune: Readonly<Rune>;
|
|
632
1534
|
stellar: Readonly<Stellar>;
|
|
1535
|
+
sei: Readonly<Sei>;
|
|
1536
|
+
seievm: Readonly<SeiEvm>;
|
|
1537
|
+
sgb: Readonly<Songbird>;
|
|
633
1538
|
sol: Readonly<Sol>;
|
|
1539
|
+
sonic: Readonly<Sonic>;
|
|
634
1540
|
sui: Readonly<Sui>;
|
|
635
1541
|
near: Readonly<Near>;
|
|
636
1542
|
stx: Readonly<Stx>;
|
|
1543
|
+
stt: Readonly<Somnia>;
|
|
1544
|
+
soneium: Readonly<Soneium>;
|
|
637
1545
|
susd: Readonly<SUSD>;
|
|
1546
|
+
tao: Readonly<Bittensor>;
|
|
1547
|
+
tia: Readonly<Tia>;
|
|
1548
|
+
ton: Readonly<Ton>;
|
|
638
1549
|
trx: Readonly<Trx>;
|
|
1550
|
+
vet: Readonly<Vet>;
|
|
1551
|
+
wemix: Readonly<Wemix>;
|
|
1552
|
+
world: Readonly<World>;
|
|
1553
|
+
xdc: Readonly<Xdc>;
|
|
639
1554
|
xrp: Readonly<Xrp>;
|
|
640
1555
|
xtz: Readonly<Xtz>;
|
|
641
1556
|
zCash: Readonly<ZCash>;
|
|
1557
|
+
zeta: Readonly<Zeta>;
|
|
1558
|
+
zkSync: Readonly<ZkSync>;
|
|
642
1559
|
};
|
|
643
1560
|
test: {
|
|
644
1561
|
ada: Readonly<AdaTestnet>;
|
|
645
1562
|
algorand: Readonly<AlgorandTestnet>;
|
|
1563
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1564
|
+
apt: Readonly<AptTestnet>;
|
|
1565
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1566
|
+
asi: Readonly<AsiTestnet>;
|
|
646
1567
|
atom: Readonly<AtomTestnet>;
|
|
647
1568
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
648
1569
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1570
|
+
baby: Readonly<BabyTestnet>;
|
|
1571
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
649
1572
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1573
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1574
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1575
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
650
1576
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
651
1577
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
652
1578
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1579
|
+
bera: Readonly<BerachainTestnet>;
|
|
1580
|
+
bld: Readonly<BldTestnet>;
|
|
653
1581
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
654
1582
|
casper: Readonly<CasperTestnet>;
|
|
1583
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
655
1584
|
celo: Readonly<CeloTestnet>;
|
|
1585
|
+
cronos: Readonly<CronosTestnet>;
|
|
656
1586
|
dash: Readonly<DashTestnet>;
|
|
657
1587
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
658
1588
|
dot: Readonly<PolkadotTestnet>;
|
|
659
1589
|
eCash: Readonly<ECashTestnet>;
|
|
660
1590
|
eos: Readonly<EosTestnet>;
|
|
661
1591
|
fiat: Readonly<FiatTestnet>;
|
|
1592
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1593
|
+
flr: Readonly<FlareTestnet>;
|
|
1594
|
+
mon: Readonly<MonadTestnet>;
|
|
662
1595
|
pyrmont: Readonly<Pyrmont>;
|
|
663
1596
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
1597
|
+
hash: Readonly<HashTestnet>;
|
|
664
1598
|
hedera: Readonly<HederaTestnet>;
|
|
1599
|
+
icp: Readonly<IcpTestnet>;
|
|
1600
|
+
initia: Readonly<InitiaTestnet>;
|
|
1601
|
+
injective: Readonly<InjectiveTestnet>;
|
|
1602
|
+
irys: Readonly<IrysTestnet>;
|
|
1603
|
+
islm: Readonly<IslmTestnet>;
|
|
1604
|
+
kava: Readonly<KavaTestnet>;
|
|
665
1605
|
kovan: Readonly<Kovan>;
|
|
666
1606
|
goerli: Readonly<Goerli>;
|
|
1607
|
+
holesky: Readonly<Holesky>;
|
|
1608
|
+
hoodi: Readonly<Hoodi>;
|
|
1609
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
667
1610
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1611
|
+
mantra: Readonly<MantraTestnet>;
|
|
668
1612
|
polygon: Readonly<PolygonTestnet>;
|
|
1613
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1614
|
+
phrs: Readonly<PharosTestnet>;
|
|
1615
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
1616
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
1617
|
+
oas: Readonly<OasTestnet>;
|
|
669
1618
|
ofc: Readonly<OfcTestnet>;
|
|
1619
|
+
optimism: Readonly<OptimismTestnet>;
|
|
1620
|
+
osmo: Readonly<OsmoTestnet>;
|
|
670
1621
|
rbtc: Readonly<RbtcTestnet>;
|
|
1622
|
+
rune: Readonly<RuneTestNet>;
|
|
1623
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
671
1624
|
stellar: Readonly<StellarTestnet>;
|
|
1625
|
+
sei: Readonly<SeiTestnet>;
|
|
1626
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
672
1627
|
sol: Readonly<SolTestnet>;
|
|
673
1628
|
sui: Readonly<SuiTestnet>;
|
|
674
1629
|
near: Readonly<NearTestnet>;
|
|
675
1630
|
stx: Readonly<StxTestnet>;
|
|
1631
|
+
stt: Readonly<SomniaTestnet>;
|
|
1632
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
1633
|
+
sonic: Readonly<SonicTestnet>;
|
|
1634
|
+
kaia: Readonly<KaiaTestnet>;
|
|
676
1635
|
susd: Readonly<SUSDTestnet>;
|
|
1636
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1637
|
+
tao: Readonly<BittensorTestnet>;
|
|
1638
|
+
tia: Readonly<TiaTestnet>;
|
|
1639
|
+
ton: Readonly<TonTestnet>;
|
|
677
1640
|
trx: Readonly<TrxTestnet>;
|
|
1641
|
+
vet: Readonly<VetTestnet>;
|
|
1642
|
+
wemix: Readonly<WemixTestnet>;
|
|
1643
|
+
world: Readonly<WorldTestnet>;
|
|
1644
|
+
xdc: Readonly<XdcTestnet>;
|
|
678
1645
|
xrp: Readonly<XrpTestnet>;
|
|
679
1646
|
xtz: Readonly<XtzTestnet>;
|
|
680
1647
|
zCash: Readonly<ZCashTestnet>;
|
|
1648
|
+
zeta: Readonly<ZetaTestnet>;
|
|
1649
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
681
1650
|
};
|
|
682
1651
|
};
|
|
683
1652
|
export {};
|