@bitgo-beta/statics 15.1.1-beta.110 → 15.1.1-beta.1101
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/CHANGELOG.md +3056 -0
- package/dist/src/account.d.ts +725 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1178 -119
- 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 +1660 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1723 -50
- package/dist/src/coinFeatures.d.ts +94 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +600 -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/botOfcTokens.d.ts +2 -0
- package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
- package/dist/src/coins/botOfcTokens.js +5 -0
- package/dist/src/coins/botTokens.d.ts +2 -0
- package/dist/src/coins/botTokens.d.ts.map +1 -0
- package/dist/src/coins/botTokens.js +5 -0
- package/dist/src/coins/bscTokens.d.ts +2 -0
- package/dist/src/coins/bscTokens.d.ts.map +1 -0
- package/dist/src/coins/bscTokens.js +160 -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 +1516 -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 +622 -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 +1416 -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 +148 -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 +365 -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 +904 -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 +1002 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1296 -42
- package/dist/src/ofc.d.ts +489 -3
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +1013 -21
- 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,632 @@ 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
|
+
forwarderFactoryAddress: string;
|
|
1132
|
+
forwarderImplementationAddress: string;
|
|
1133
|
+
walletFactoryAddress: string;
|
|
1134
|
+
walletImplementationAddress: string;
|
|
1135
|
+
batcherContractAddress: string;
|
|
1136
|
+
}
|
|
1137
|
+
declare class Pharos extends Mainnet implements EthereumNetwork {
|
|
1138
|
+
name: string;
|
|
1139
|
+
family: CoinFamily;
|
|
1140
|
+
explorerUrl: string;
|
|
1141
|
+
accountExplorerUrl: string;
|
|
1142
|
+
chainId: number;
|
|
1143
|
+
nativeCoinOperationHashPrefix: string;
|
|
1144
|
+
}
|
|
1145
|
+
declare class PharosTestnet extends Testnet implements EthereumNetwork {
|
|
1146
|
+
name: string;
|
|
1147
|
+
family: CoinFamily;
|
|
1148
|
+
explorerUrl: string;
|
|
1149
|
+
accountExplorerUrl: string;
|
|
1150
|
+
chainId: number;
|
|
1151
|
+
nativeCoinOperationHashPrefix: string;
|
|
1152
|
+
}
|
|
1153
|
+
declare class Creditcoin extends Mainnet implements EthereumNetwork {
|
|
1154
|
+
name: string;
|
|
1155
|
+
family: CoinFamily;
|
|
1156
|
+
explorerUrl: string;
|
|
1157
|
+
accountExplorerUrl: string;
|
|
1158
|
+
chainId: number;
|
|
1159
|
+
nativeCoinOperationHashPrefix: string;
|
|
1160
|
+
}
|
|
1161
|
+
declare class Plasma extends Mainnet implements EthereumNetwork {
|
|
1162
|
+
name: string;
|
|
1163
|
+
family: CoinFamily;
|
|
1164
|
+
explorerUrl: string;
|
|
1165
|
+
accountExplorerUrl: string;
|
|
1166
|
+
chainId: number;
|
|
1167
|
+
nativeCoinOperationHashPrefix: string;
|
|
1168
|
+
}
|
|
1169
|
+
declare class PlasmaTestnet extends Testnet implements EthereumNetwork {
|
|
1170
|
+
name: string;
|
|
1171
|
+
family: CoinFamily;
|
|
1172
|
+
explorerUrl: string;
|
|
1173
|
+
accountExplorerUrl: string;
|
|
1174
|
+
chainId: number;
|
|
1175
|
+
nativeCoinOperationHashPrefix: string;
|
|
1176
|
+
}
|
|
1177
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1178
|
+
name: string;
|
|
1179
|
+
family: CoinFamily;
|
|
1180
|
+
explorerUrl: string;
|
|
1181
|
+
accountExplorerUrl: string;
|
|
1182
|
+
chainId: number;
|
|
1183
|
+
nativeCoinOperationHashPrefix: string;
|
|
1184
|
+
}
|
|
1185
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1186
|
+
name: string;
|
|
1187
|
+
family: CoinFamily;
|
|
1188
|
+
explorerUrl: string;
|
|
1189
|
+
accountExplorerUrl: string;
|
|
1190
|
+
chainId: number;
|
|
1191
|
+
nativeCoinOperationHashPrefix: string;
|
|
1192
|
+
}
|
|
1193
|
+
declare class LineaETH extends Mainnet implements EthereumNetwork {
|
|
1194
|
+
name: string;
|
|
1195
|
+
family: CoinFamily;
|
|
1196
|
+
explorerUrl: string;
|
|
1197
|
+
accountExplorerUrl: string;
|
|
1198
|
+
chainId: number;
|
|
1199
|
+
nativeCoinOperationHashPrefix: string;
|
|
1200
|
+
}
|
|
1201
|
+
declare class LineaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1202
|
+
name: string;
|
|
1203
|
+
family: CoinFamily;
|
|
1204
|
+
explorerUrl: string;
|
|
1205
|
+
accountExplorerUrl: string;
|
|
1206
|
+
chainId: number;
|
|
1207
|
+
nativeCoinOperationHashPrefix: string;
|
|
1208
|
+
}
|
|
1209
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1210
|
+
name: string;
|
|
1211
|
+
family: CoinFamily;
|
|
1212
|
+
explorerUrl: string;
|
|
1213
|
+
accountExplorerUrl: string;
|
|
1214
|
+
chainId: number;
|
|
1215
|
+
nativeCoinOperationHashPrefix: string;
|
|
1216
|
+
}
|
|
1217
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1218
|
+
name: string;
|
|
1219
|
+
family: CoinFamily;
|
|
1220
|
+
explorerUrl: string;
|
|
1221
|
+
accountExplorerUrl: string;
|
|
1222
|
+
chainId: number;
|
|
1223
|
+
nativeCoinOperationHashPrefix: string;
|
|
1224
|
+
}
|
|
1225
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1226
|
+
name: string;
|
|
1227
|
+
family: CoinFamily;
|
|
1228
|
+
explorerUrl: string;
|
|
1229
|
+
accountExplorerUrl: string;
|
|
1230
|
+
chainId: number;
|
|
1231
|
+
nativeCoinOperationHashPrefix: string;
|
|
1232
|
+
walletFactoryAddress: string;
|
|
1233
|
+
batcherContractAddress: string;
|
|
1234
|
+
forwarderFactoryAddress: string;
|
|
1235
|
+
forwarderImplementationAddress: string;
|
|
1236
|
+
walletImplementationAddress: string;
|
|
1237
|
+
}
|
|
1238
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1239
|
+
name: string;
|
|
1240
|
+
family: CoinFamily;
|
|
1241
|
+
explorerUrl: string;
|
|
1242
|
+
accountExplorerUrl: string;
|
|
1243
|
+
chainId: number;
|
|
1244
|
+
nativeCoinOperationHashPrefix: string;
|
|
1245
|
+
}
|
|
1246
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1247
|
+
name: string;
|
|
1248
|
+
family: CoinFamily;
|
|
1249
|
+
explorerUrl: string;
|
|
1250
|
+
accountExplorerUrl: string;
|
|
1251
|
+
chainId: number;
|
|
1252
|
+
nativeCoinOperationHashPrefix: string;
|
|
1253
|
+
walletFactoryAddress: string;
|
|
1254
|
+
batcherContractAddress: string;
|
|
1255
|
+
forwarderFactoryAddress: string;
|
|
1256
|
+
forwarderImplementationAddress: string;
|
|
1257
|
+
walletImplementationAddress: string;
|
|
1258
|
+
}
|
|
1259
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1260
|
+
name: string;
|
|
1261
|
+
family: CoinFamily;
|
|
1262
|
+
explorerUrl: string;
|
|
1263
|
+
accountExplorerUrl: string;
|
|
1264
|
+
chainId: number;
|
|
1265
|
+
nativeCoinOperationHashPrefix: string;
|
|
1266
|
+
}
|
|
1267
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1268
|
+
name: string;
|
|
1269
|
+
family: CoinFamily;
|
|
1270
|
+
explorerUrl: string;
|
|
1271
|
+
accountExplorerUrl: string;
|
|
1272
|
+
chainId: number;
|
|
1273
|
+
nativeCoinOperationHashPrefix: string;
|
|
1274
|
+
walletFactoryAddress: string;
|
|
1275
|
+
batcherContractAddress: string;
|
|
1276
|
+
forwarderFactoryAddress: string;
|
|
1277
|
+
forwarderImplementationAddress: string;
|
|
1278
|
+
walletImplementationAddress: string;
|
|
1279
|
+
}
|
|
1280
|
+
declare class Og extends Mainnet implements EthereumNetwork {
|
|
1281
|
+
name: string;
|
|
1282
|
+
family: CoinFamily;
|
|
1283
|
+
explorerUrl: string;
|
|
1284
|
+
accountExplorerUrl: string;
|
|
1285
|
+
chainId: number;
|
|
1286
|
+
nativeCoinOperationHashPrefix: string;
|
|
1287
|
+
}
|
|
1288
|
+
declare class OgTestnet extends Testnet implements EthereumNetwork {
|
|
1289
|
+
name: string;
|
|
1290
|
+
family: CoinFamily;
|
|
1291
|
+
explorerUrl: string;
|
|
1292
|
+
accountExplorerUrl: string;
|
|
1293
|
+
chainId: number;
|
|
1294
|
+
nativeCoinOperationHashPrefix: string;
|
|
1295
|
+
}
|
|
1296
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1297
|
+
name: string;
|
|
1298
|
+
family: CoinFamily;
|
|
1299
|
+
explorerUrl: string;
|
|
1300
|
+
accountExplorerUrl: string;
|
|
1301
|
+
chainId: number;
|
|
1302
|
+
nativeCoinOperationHashPrefix: string;
|
|
1303
|
+
batcherContractAddress: string;
|
|
1304
|
+
forwarderFactoryAddress: string;
|
|
1305
|
+
forwarderImplementationAddress: string;
|
|
1306
|
+
}
|
|
1307
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1308
|
+
name: string;
|
|
1309
|
+
family: CoinFamily;
|
|
1310
|
+
explorerUrl: string;
|
|
1311
|
+
accountExplorerUrl: string;
|
|
1312
|
+
chainId: number;
|
|
1313
|
+
nativeCoinOperationHashPrefix: string;
|
|
1314
|
+
batcherContractAddress: string;
|
|
1315
|
+
forwarderFactoryAddress: string;
|
|
1316
|
+
forwarderImplementationAddress: string;
|
|
1317
|
+
}
|
|
1318
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1319
|
+
name: string;
|
|
1320
|
+
family: CoinFamily;
|
|
1321
|
+
explorerUrl: string;
|
|
1322
|
+
accountExplorerUrl: string;
|
|
1323
|
+
chainId: number;
|
|
1324
|
+
nativeCoinOperationHashPrefix: string;
|
|
1325
|
+
batcherContractAddress: string;
|
|
1326
|
+
forwarderFactoryAddress: string;
|
|
1327
|
+
forwarderImplementationAddress: string;
|
|
1328
|
+
}
|
|
1329
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1330
|
+
name: string;
|
|
1331
|
+
family: CoinFamily;
|
|
1332
|
+
explorerUrl: string;
|
|
1333
|
+
accountExplorerUrl: string;
|
|
1334
|
+
chainId: number;
|
|
1335
|
+
nativeCoinOperationHashPrefix: string;
|
|
1336
|
+
batcherContractAddress: string;
|
|
1337
|
+
forwarderFactoryAddress: string;
|
|
1338
|
+
forwarderImplementationAddress: string;
|
|
1339
|
+
}
|
|
1340
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1341
|
+
name: string;
|
|
1342
|
+
family: CoinFamily;
|
|
1343
|
+
explorerUrl: string;
|
|
1344
|
+
accountExplorerUrl: string;
|
|
1345
|
+
chainId: number;
|
|
1346
|
+
nativeCoinOperationHashPrefix: string;
|
|
1347
|
+
walletFactoryAddress: string;
|
|
1348
|
+
batcherContractAddress: string;
|
|
1349
|
+
forwarderFactoryAddress: string;
|
|
1350
|
+
forwarderImplementationAddress: string;
|
|
1351
|
+
walletImplementationAddress: string;
|
|
1352
|
+
}
|
|
1353
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1354
|
+
name: string;
|
|
1355
|
+
family: CoinFamily;
|
|
1356
|
+
explorerUrl: string;
|
|
1357
|
+
chainId: number;
|
|
1358
|
+
nativeCoinOperationHashPrefix: string;
|
|
1359
|
+
walletImplementationAddress: string;
|
|
1360
|
+
batcherContractAddress: string;
|
|
1361
|
+
forwarderFactoryAddress: string;
|
|
1362
|
+
forwarderImplementationAddress: string;
|
|
1363
|
+
}
|
|
1364
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1365
|
+
name: string;
|
|
1366
|
+
family: CoinFamily;
|
|
1367
|
+
explorerUrl: string;
|
|
1368
|
+
accountExplorerUrl: string;
|
|
1369
|
+
chainId: number;
|
|
1370
|
+
nativeCoinOperationHashPrefix: string;
|
|
1371
|
+
walletImplementationAddress: string;
|
|
1372
|
+
batcherContractAddress: string;
|
|
1373
|
+
forwarderFactoryAddress: string;
|
|
1374
|
+
forwarderImplementationAddress: string;
|
|
1375
|
+
}
|
|
1376
|
+
declare class WorldTestnet 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
|
+
walletImplementationAddress: string;
|
|
1387
|
+
}
|
|
1388
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1389
|
+
name: string;
|
|
1390
|
+
family: CoinFamily;
|
|
1391
|
+
explorerUrl: string;
|
|
1392
|
+
accountExplorerUrl: string;
|
|
1393
|
+
chainId: number;
|
|
1394
|
+
nativeCoinOperationHashPrefix: string;
|
|
1395
|
+
walletImplementationAddress: string;
|
|
1396
|
+
walletFactoryAddress: string;
|
|
1397
|
+
batcherContractAddress: string;
|
|
1398
|
+
forwarderFactoryAddress: string;
|
|
1399
|
+
forwarderImplementationAddress: string;
|
|
1400
|
+
}
|
|
1401
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1402
|
+
name: string;
|
|
1403
|
+
family: CoinFamily;
|
|
1404
|
+
explorerUrl: string;
|
|
1405
|
+
accountExplorerUrl: string;
|
|
1406
|
+
chainId: number;
|
|
1407
|
+
nativeCoinOperationHashPrefix: string;
|
|
1408
|
+
walletFactoryAddress: string;
|
|
1409
|
+
batcherContractAddress: string;
|
|
1410
|
+
forwarderFactoryAddress: string;
|
|
1411
|
+
forwarderImplementationAddress: string;
|
|
1412
|
+
walletImplementationAddress: string;
|
|
1413
|
+
}
|
|
1414
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1415
|
+
name: string;
|
|
1416
|
+
family: CoinFamily;
|
|
1417
|
+
explorerUrl: string;
|
|
1418
|
+
accountExplorerUrl: string;
|
|
1419
|
+
chainId: number;
|
|
1420
|
+
nativeCoinOperationHashPrefix: string;
|
|
1421
|
+
}
|
|
1422
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1423
|
+
name: string;
|
|
1424
|
+
family: CoinFamily;
|
|
1425
|
+
explorerUrl: string;
|
|
1426
|
+
accountExplorerUrl: string;
|
|
1427
|
+
chainId: number;
|
|
1428
|
+
nativeCoinOperationHashPrefix: string;
|
|
1429
|
+
walletFactoryAddress: string;
|
|
1430
|
+
batcherContractAddress: string;
|
|
1431
|
+
forwarderFactoryAddress: string;
|
|
1432
|
+
forwarderImplementationAddress: string;
|
|
1433
|
+
walletImplementationAddress: string;
|
|
1434
|
+
}
|
|
1435
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1436
|
+
name: string;
|
|
1437
|
+
family: CoinFamily;
|
|
1438
|
+
explorerUrl: string;
|
|
1439
|
+
chainId: number;
|
|
1440
|
+
nativeCoinOperationHashPrefix: string;
|
|
1441
|
+
walletImplementationAddress: string;
|
|
1442
|
+
walletFactoryAddress: string;
|
|
1443
|
+
forwarderImplementationAddress: string;
|
|
1444
|
+
forwarderFactoryAddress: string;
|
|
1445
|
+
batcherContractAddress: string;
|
|
1446
|
+
}
|
|
1447
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1448
|
+
name: string;
|
|
1449
|
+
family: CoinFamily;
|
|
1450
|
+
explorerUrl: string;
|
|
1451
|
+
accountExplorerUrl: string;
|
|
1452
|
+
chainId: number;
|
|
1453
|
+
nativeCoinOperationHashPrefix: string;
|
|
1454
|
+
walletFactoryAddress: string;
|
|
1455
|
+
batcherContractAddress: string;
|
|
1456
|
+
forwarderFactoryAddress: string;
|
|
1457
|
+
forwarderImplementationAddress: string;
|
|
1458
|
+
walletImplementationAddress: string;
|
|
1459
|
+
}
|
|
1460
|
+
declare class Somi extends Mainnet implements EthereumNetwork {
|
|
1461
|
+
name: string;
|
|
1462
|
+
family: CoinFamily;
|
|
1463
|
+
explorerUrl: string;
|
|
1464
|
+
chainId: number;
|
|
1465
|
+
nativeCoinOperationHashPrefix: string;
|
|
1466
|
+
walletImplementationAddress: string;
|
|
1467
|
+
walletFactoryAddress: string;
|
|
1468
|
+
forwarderImplementationAddress: string;
|
|
1469
|
+
forwarderFactoryAddress: string;
|
|
1470
|
+
batcherContractAddress: string;
|
|
1471
|
+
}
|
|
1472
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1473
|
+
name: string;
|
|
1474
|
+
family: CoinFamily;
|
|
1475
|
+
explorerUrl: string;
|
|
1476
|
+
accountExplorerUrl: string;
|
|
1477
|
+
chainId: number;
|
|
1478
|
+
nativeCoinOperationHashPrefix: string;
|
|
1479
|
+
batcherContractAddress: string;
|
|
1480
|
+
forwarderFactoryAddress: string;
|
|
1481
|
+
forwarderImplementationAddress: string;
|
|
1482
|
+
}
|
|
1483
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1484
|
+
name: string;
|
|
1485
|
+
family: CoinFamily;
|
|
1486
|
+
explorerUrl: string;
|
|
1487
|
+
accountExplorerUrl: string;
|
|
1488
|
+
chainId: number;
|
|
1489
|
+
nativeCoinOperationHashPrefix: string;
|
|
1490
|
+
batcherContractAddress: string;
|
|
1491
|
+
forwarderFactoryAddress: string;
|
|
1492
|
+
forwarderImplementationAddress: string;
|
|
1493
|
+
}
|
|
1494
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1495
|
+
name: string;
|
|
1496
|
+
family: CoinFamily;
|
|
1497
|
+
explorerUrl: string;
|
|
1498
|
+
accountExplorerUrl: string;
|
|
1499
|
+
chainId: number;
|
|
1500
|
+
nativeCoinOperationHashPrefix: string;
|
|
1501
|
+
batcherContractAddress: string;
|
|
1502
|
+
forwarderFactoryAddress: string;
|
|
1503
|
+
forwarderImplementationAddress: string;
|
|
1504
|
+
}
|
|
1505
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1506
|
+
name: string;
|
|
1507
|
+
family: CoinFamily;
|
|
1508
|
+
explorerUrl: string;
|
|
1509
|
+
accountExplorerUrl: string;
|
|
1510
|
+
chainId: number;
|
|
1511
|
+
nativeCoinOperationHashPrefix: string;
|
|
1512
|
+
batcherContractAddress: string;
|
|
1513
|
+
forwarderFactoryAddress: string;
|
|
1514
|
+
forwarderImplementationAddress: string;
|
|
1515
|
+
}
|
|
1516
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1517
|
+
name: string;
|
|
1518
|
+
family: CoinFamily;
|
|
1519
|
+
explorerUrl: string;
|
|
1520
|
+
accountExplorerUrl: string;
|
|
1521
|
+
chainId: number;
|
|
1522
|
+
nativeCoinOperationHashPrefix: string;
|
|
1523
|
+
tokenOperationHashPrefix: string;
|
|
1524
|
+
forwarderFactoryAddress: string;
|
|
1525
|
+
forwarderImplementationAddress: string;
|
|
1526
|
+
walletFactoryAddress: string;
|
|
1527
|
+
walletImplementationAddress: string;
|
|
1528
|
+
}
|
|
1529
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1530
|
+
name: string;
|
|
1531
|
+
family: CoinFamily;
|
|
1532
|
+
explorerUrl: string;
|
|
1533
|
+
accountExplorerUrl: string;
|
|
1534
|
+
chainId: number;
|
|
1535
|
+
nativeCoinOperationHashPrefix: string;
|
|
1536
|
+
tokenOperationHashPrefix: string;
|
|
1537
|
+
forwarderFactoryAddress: string;
|
|
1538
|
+
forwarderImplementationAddress: string;
|
|
1539
|
+
walletFactoryAddress: string;
|
|
1540
|
+
walletImplementationAddress: string;
|
|
1541
|
+
}
|
|
1542
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1543
|
+
name: string;
|
|
1544
|
+
family: CoinFamily;
|
|
1545
|
+
explorerUrl: string;
|
|
1546
|
+
specName: string;
|
|
1547
|
+
genesisHash: string;
|
|
1548
|
+
specVersion: number;
|
|
1549
|
+
chainName: string;
|
|
1550
|
+
txVersion: number;
|
|
1551
|
+
}
|
|
1552
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1553
|
+
name: string;
|
|
1554
|
+
family: CoinFamily;
|
|
1555
|
+
explorerUrl: string;
|
|
1556
|
+
specName: SubstrateSpecNameType;
|
|
1557
|
+
genesisHash: string;
|
|
1558
|
+
specVersion: number;
|
|
1559
|
+
chainName: string;
|
|
1560
|
+
txVersion: number;
|
|
1561
|
+
}
|
|
1562
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1563
|
+
name: string;
|
|
1564
|
+
family: CoinFamily;
|
|
1565
|
+
explorerUrl: string;
|
|
1566
|
+
accountExplorerUrl: string;
|
|
1567
|
+
chainId: number;
|
|
1568
|
+
forwarderFactoryAddress: string;
|
|
1569
|
+
forwarderImplementationAddress: string;
|
|
1570
|
+
}
|
|
1571
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1572
|
+
name: string;
|
|
1573
|
+
family: CoinFamily;
|
|
1574
|
+
explorerUrl: string;
|
|
1575
|
+
accountExplorerUrl: string;
|
|
1576
|
+
chainId: number;
|
|
1577
|
+
forwarderFactoryAddress: string;
|
|
1578
|
+
forwarderImplementationAddress: string;
|
|
672
1579
|
}
|
|
673
1580
|
export declare const Networks: {
|
|
674
1581
|
main: {
|
|
675
1582
|
ada: Readonly<Ada>;
|
|
676
1583
|
algorand: Readonly<Algorand>;
|
|
1584
|
+
apechain: Readonly<ApeChain>;
|
|
1585
|
+
apt: Readonly<Apt>;
|
|
1586
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1587
|
+
asi: Readonly<Asi>;
|
|
677
1588
|
atom: Readonly<Atom>;
|
|
678
1589
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1590
|
avalancheP: Readonly<AvalancheP>;
|
|
1591
|
+
baby: Readonly<Baby>;
|
|
1592
|
+
basechain: Readonly<BaseChain>;
|
|
680
1593
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1594
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1595
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1596
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1597
|
+
bera: Readonly<Berachain>;
|
|
684
1598
|
bld: Readonly<Bld>;
|
|
685
1599
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1600
|
casper: Readonly<Casper>;
|
|
687
1601
|
celo: Readonly<Celo>;
|
|
1602
|
+
coredao: Readonly<Coredao>;
|
|
1603
|
+
coreum: Readonly<Coreum>;
|
|
1604
|
+
cronos: Readonly<Cronos>;
|
|
688
1605
|
dash: Readonly<Dash>;
|
|
689
1606
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1607
|
dot: Readonly<Polkadot>;
|
|
@@ -695,73 +1612,157 @@ export declare const Networks: {
|
|
|
695
1612
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1613
|
ethereumW: Readonly<EthereumW>;
|
|
697
1614
|
fiat: Readonly<Fiat>;
|
|
1615
|
+
fetchai: Readonly<FetchAi>;
|
|
1616
|
+
flr: Readonly<Flare>;
|
|
698
1617
|
hash: Readonly<Hash>;
|
|
699
1618
|
hedera: Readonly<Hedera>;
|
|
1619
|
+
icp: Readonly<Icp>;
|
|
1620
|
+
ip: Readonly<IP>;
|
|
1621
|
+
initia: Readonly<Initia>;
|
|
700
1622
|
injective: Readonly<Injective>;
|
|
1623
|
+
irys: Readonly<Irys>;
|
|
1624
|
+
islm: Readonly<Islm>;
|
|
1625
|
+
kaia: Readonly<Kaia>;
|
|
1626
|
+
kava: Readonly<Kava>;
|
|
1627
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1628
|
litecoin: Readonly<Litecoin>;
|
|
1629
|
+
mon: Readonly<Monad>;
|
|
1630
|
+
mantra: Readonly<Mantra>;
|
|
702
1631
|
polygon: Readonly<Polygon>;
|
|
1632
|
+
polyx: Readonly<Polymesh>;
|
|
1633
|
+
phrs: Readonly<Pharos>;
|
|
1634
|
+
ctc: Readonly<Creditcoin>;
|
|
1635
|
+
hypeevm: Readonly<HypeEVM>;
|
|
1636
|
+
lineaeth: Readonly<LineaETH>;
|
|
1637
|
+
oas: Readonly<Oas>;
|
|
1638
|
+
og: Readonly<Og>;
|
|
703
1639
|
ofc: Readonly<Ofc>;
|
|
1640
|
+
optimism: Readonly<Optimism>;
|
|
704
1641
|
osmo: Readonly<Osmo>;
|
|
705
1642
|
rbtc: Readonly<Rbtc>;
|
|
1643
|
+
rune: Readonly<Rune>;
|
|
706
1644
|
stellar: Readonly<Stellar>;
|
|
707
1645
|
sei: Readonly<Sei>;
|
|
1646
|
+
seievm: Readonly<SeiEvm>;
|
|
1647
|
+
sgb: Readonly<Songbird>;
|
|
708
1648
|
sol: Readonly<Sol>;
|
|
1649
|
+
sonic: Readonly<Sonic>;
|
|
709
1650
|
sui: Readonly<Sui>;
|
|
710
1651
|
near: Readonly<Near>;
|
|
711
1652
|
stx: Readonly<Stx>;
|
|
1653
|
+
stt: Readonly<Somnia>;
|
|
1654
|
+
somi: Readonly<Somi>;
|
|
1655
|
+
soneium: Readonly<Soneium>;
|
|
712
1656
|
susd: Readonly<SUSD>;
|
|
1657
|
+
tao: Readonly<Bittensor>;
|
|
713
1658
|
tia: Readonly<Tia>;
|
|
1659
|
+
ton: Readonly<Ton>;
|
|
714
1660
|
trx: Readonly<Trx>;
|
|
1661
|
+
vet: Readonly<Vet>;
|
|
1662
|
+
wemix: Readonly<Wemix>;
|
|
1663
|
+
world: Readonly<World>;
|
|
1664
|
+
xdc: Readonly<Xdc>;
|
|
1665
|
+
xpl: Readonly<Plasma>;
|
|
715
1666
|
xrp: Readonly<Xrp>;
|
|
716
1667
|
xtz: Readonly<Xtz>;
|
|
717
1668
|
zCash: Readonly<ZCash>;
|
|
718
1669
|
zeta: Readonly<Zeta>;
|
|
1670
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1671
|
};
|
|
720
1672
|
test: {
|
|
721
1673
|
ada: Readonly<AdaTestnet>;
|
|
722
1674
|
algorand: Readonly<AlgorandTestnet>;
|
|
1675
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1676
|
+
apt: Readonly<AptTestnet>;
|
|
1677
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1678
|
+
asi: Readonly<AsiTestnet>;
|
|
723
1679
|
atom: Readonly<AtomTestnet>;
|
|
724
1680
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1681
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1682
|
+
baby: Readonly<BabyTestnet>;
|
|
1683
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1684
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1685
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1686
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1687
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1688
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1689
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1690
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1691
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1692
|
bld: Readonly<BldTestnet>;
|
|
731
1693
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1694
|
casper: Readonly<CasperTestnet>;
|
|
1695
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1696
|
celo: Readonly<CeloTestnet>;
|
|
1697
|
+
cronos: Readonly<CronosTestnet>;
|
|
734
1698
|
dash: Readonly<DashTestnet>;
|
|
735
1699
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
736
1700
|
dot: Readonly<PolkadotTestnet>;
|
|
737
1701
|
eCash: Readonly<ECashTestnet>;
|
|
738
1702
|
eos: Readonly<EosTestnet>;
|
|
739
1703
|
fiat: Readonly<FiatTestnet>;
|
|
1704
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1705
|
+
flr: Readonly<FlareTestnet>;
|
|
1706
|
+
mon: Readonly<MonadTestnet>;
|
|
740
1707
|
pyrmont: Readonly<Pyrmont>;
|
|
741
1708
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1709
|
hash: Readonly<HashTestnet>;
|
|
743
1710
|
hedera: Readonly<HederaTestnet>;
|
|
1711
|
+
icp: Readonly<IcpTestnet>;
|
|
1712
|
+
ip: Readonly<IPTestnet>;
|
|
1713
|
+
initia: Readonly<InitiaTestnet>;
|
|
744
1714
|
injective: Readonly<InjectiveTestnet>;
|
|
1715
|
+
irys: Readonly<IrysTestnet>;
|
|
1716
|
+
islm: Readonly<IslmTestnet>;
|
|
1717
|
+
kava: Readonly<KavaTestnet>;
|
|
745
1718
|
kovan: Readonly<Kovan>;
|
|
746
1719
|
goerli: Readonly<Goerli>;
|
|
1720
|
+
holesky: Readonly<Holesky>;
|
|
1721
|
+
hoodi: Readonly<Hoodi>;
|
|
1722
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1723
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1724
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1725
|
polygon: Readonly<PolygonTestnet>;
|
|
1726
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1727
|
+
phrs: Readonly<PharosTestnet>;
|
|
1728
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
1729
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
1730
|
+
lineaeth: Readonly<LineaETHTestnet>;
|
|
1731
|
+
oas: Readonly<OasTestnet>;
|
|
1732
|
+
og: Readonly<OgTestnet>;
|
|
749
1733
|
ofc: Readonly<OfcTestnet>;
|
|
1734
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1735
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1736
|
rbtc: Readonly<RbtcTestnet>;
|
|
1737
|
+
rune: Readonly<RuneTestNet>;
|
|
1738
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1739
|
stellar: Readonly<StellarTestnet>;
|
|
753
1740
|
sei: Readonly<SeiTestnet>;
|
|
1741
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
754
1742
|
sol: Readonly<SolTestnet>;
|
|
755
1743
|
sui: Readonly<SuiTestnet>;
|
|
756
1744
|
near: Readonly<NearTestnet>;
|
|
757
1745
|
stx: Readonly<StxTestnet>;
|
|
1746
|
+
stt: Readonly<SomniaTestnet>;
|
|
1747
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
1748
|
+
sonic: Readonly<SonicTestnet>;
|
|
1749
|
+
kaia: Readonly<KaiaTestnet>;
|
|
758
1750
|
susd: Readonly<SUSDTestnet>;
|
|
1751
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1752
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1753
|
tia: Readonly<TiaTestnet>;
|
|
1754
|
+
ton: Readonly<TonTestnet>;
|
|
760
1755
|
trx: Readonly<TrxTestnet>;
|
|
1756
|
+
vet: Readonly<VetTestnet>;
|
|
1757
|
+
wemix: Readonly<WemixTestnet>;
|
|
1758
|
+
world: Readonly<WorldTestnet>;
|
|
1759
|
+
xdc: Readonly<XdcTestnet>;
|
|
1760
|
+
xpl: Readonly<PlasmaTestnet>;
|
|
761
1761
|
xrp: Readonly<XrpTestnet>;
|
|
762
1762
|
xtz: Readonly<XtzTestnet>;
|
|
763
1763
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1764
|
zeta: Readonly<ZetaTestnet>;
|
|
1765
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1766
|
};
|
|
766
1767
|
};
|
|
767
1768
|
export {};
|