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