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