@bitgo-beta/statics 10.0.1-alpha.37 → 10.0.1-alpha.370
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 +3247 -0
- package/dist/src/account.d.ts +705 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1136 -117
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +9 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +10 -3
- package/dist/src/base.d.ts +1712 -33
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1785 -49
- package/dist/src/coinFeatures.d.ts +94 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +597 -0
- package/dist/src/coins/avaxTokens.d.ts +2 -0
- package/dist/src/coins/avaxTokens.d.ts.map +1 -0
- package/dist/src/coins/avaxTokens.js +100 -0
- package/dist/src/coins/bscTokens.d.ts +2 -0
- package/dist/src/coins/bscTokens.d.ts.map +1 -0
- package/dist/src/coins/bscTokens.js +159 -0
- package/dist/src/coins/cosmosTokens.d.ts +2 -0
- package/dist/src/coins/cosmosTokens.d.ts.map +1 -0
- package/dist/src/coins/cosmosTokens.js +12 -0
- package/dist/src/coins/erc20Coins.d.ts +2 -0
- package/dist/src/coins/erc20Coins.d.ts.map +1 -0
- package/dist/src/coins/erc20Coins.js +1510 -0
- package/dist/src/coins/nep141Tokens.d.ts +2 -0
- package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
- package/dist/src/coins/nep141Tokens.js +14 -0
- package/dist/src/coins/ofcCoins.d.ts +2 -0
- package/dist/src/coins/ofcCoins.d.ts.map +1 -0
- package/dist/src/coins/ofcCoins.js +612 -0
- package/dist/src/coins/ofcErc20Coins.d.ts +3 -0
- package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
- package/dist/src/coins/ofcErc20Coins.js +1411 -0
- package/dist/src/coins/polygonTokens.d.ts +2 -0
- package/dist/src/coins/polygonTokens.d.ts.map +1 -0
- package/dist/src/coins/polygonTokens.js +147 -0
- package/dist/src/coins/sip10Tokens.d.ts +2 -0
- package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
- package/dist/src/coins/sip10Tokens.js +25 -0
- package/dist/src/coins/solTokens.d.ts +2 -0
- package/dist/src/coins/solTokens.d.ts.map +1 -0
- package/dist/src/coins/solTokens.js +363 -0
- package/dist/src/coins/vetTokens.d.ts +2 -0
- package/dist/src/coins/vetTokens.d.ts.map +1 -0
- package/dist/src/coins/vetTokens.js +11 -0
- package/dist/src/coins.d.ts +10 -0
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +878 -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 +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 +1036 -4
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1371 -50
- package/dist/src/ofc.d.ts +455 -3
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +939 -17
- package/dist/src/tokenConfig.d.ts +201 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +764 -240
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +84 -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,30 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
59
|
readonly minDelegationFee: string;
|
|
41
60
|
readonly avaxAssetID: string;
|
|
42
61
|
readonly txFee: string;
|
|
62
|
+
readonly maxImportFee: string;
|
|
43
63
|
}
|
|
44
64
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
65
|
readonly accountExplorerUrl?: string;
|
|
66
|
+
readonly blockExplorerUrl?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface CosmosNetwork extends AccountNetwork {
|
|
69
|
+
readonly addressPrefix: string;
|
|
70
|
+
readonly validatorPrefix: string;
|
|
71
|
+
readonly denom: string;
|
|
72
|
+
readonly gasAmount: string;
|
|
73
|
+
readonly gasLimit: number;
|
|
74
|
+
readonly validDenoms: string[];
|
|
46
75
|
}
|
|
47
76
|
/**
|
|
48
77
|
* Specification name type of the chain. Used in setting up the registry
|
|
49
78
|
*/
|
|
50
|
-
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';
|
|
51
81
|
export interface DotNetwork extends AccountNetwork {
|
|
52
82
|
readonly specName: PolkadotSpecNameType;
|
|
53
83
|
readonly genesisHash: string;
|
|
54
84
|
readonly specVersion: number;
|
|
55
85
|
readonly chainName: string;
|
|
56
|
-
readonly metadataRpc: `0x${string}`;
|
|
57
86
|
readonly txVersion: number;
|
|
58
87
|
}
|
|
59
88
|
export interface EthereumNetwork extends AccountNetwork {
|
|
@@ -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;
|
|
@@ -280,7 +410,6 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
280
410
|
genesisHash: string;
|
|
281
411
|
specVersion: number;
|
|
282
412
|
chainName: string;
|
|
283
|
-
metadataRpc: `0x${string}`;
|
|
284
413
|
txVersion: number;
|
|
285
414
|
}
|
|
286
415
|
declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
@@ -291,7 +420,6 @@ declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
|
291
420
|
genesisHash: string;
|
|
292
421
|
specVersion: number;
|
|
293
422
|
chainName: string;
|
|
294
|
-
metadataRpc: `0x${string}`;
|
|
295
423
|
txVersion: number;
|
|
296
424
|
}
|
|
297
425
|
declare class Celo extends Mainnet implements EthereumNetwork {
|
|
@@ -300,6 +428,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
300
428
|
explorerUrl: string;
|
|
301
429
|
accountExplorerUrl: string;
|
|
302
430
|
chainId: number;
|
|
431
|
+
nativeCoinOperationHashPrefix: string;
|
|
432
|
+
tokenOperationHashPrefix: string;
|
|
303
433
|
}
|
|
304
434
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
305
435
|
name: string;
|
|
@@ -307,6 +437,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
307
437
|
explorerUrl: string;
|
|
308
438
|
accountExplorerUrl: string;
|
|
309
439
|
chainId: number;
|
|
440
|
+
nativeCoinOperationHashPrefix: string;
|
|
441
|
+
tokenOperationHashPrefix: string;
|
|
310
442
|
}
|
|
311
443
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
312
444
|
name: string;
|
|
@@ -325,10 +457,13 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
325
457
|
family: CoinFamily;
|
|
326
458
|
explorerUrl: string;
|
|
327
459
|
accountExplorerUrl: string;
|
|
460
|
+
blockExplorerUrl: string;
|
|
328
461
|
chainId: number;
|
|
329
462
|
batcherContractAddress: string;
|
|
330
463
|
forwarderFactoryAddress: string;
|
|
331
464
|
forwarderImplementationAddress: string;
|
|
465
|
+
nativeCoinOperationHashPrefix: string;
|
|
466
|
+
tokenOperationHashPrefix: string;
|
|
332
467
|
}
|
|
333
468
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
334
469
|
name: string;
|
|
@@ -345,6 +480,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
345
480
|
batcherContractAddress: string;
|
|
346
481
|
forwarderFactoryAddress: string;
|
|
347
482
|
forwarderImplementationAddress: string;
|
|
483
|
+
nativeCoinOperationHashPrefix: string;
|
|
484
|
+
tokenOperationHashPrefix: string;
|
|
348
485
|
}
|
|
349
486
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
350
487
|
name: string;
|
|
@@ -361,16 +498,47 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
361
498
|
batcherContractAddress: string;
|
|
362
499
|
forwarderFactoryAddress: string;
|
|
363
500
|
forwarderImplementationAddress: string;
|
|
501
|
+
nativeCoinOperationHashPrefix: string;
|
|
502
|
+
tokenOperationHashPrefix: string;
|
|
364
503
|
}
|
|
365
504
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
366
505
|
name: string;
|
|
367
506
|
family: CoinFamily;
|
|
368
507
|
explorerUrl: string;
|
|
369
508
|
accountExplorerUrl: string;
|
|
509
|
+
blockExplorerUrl: string;
|
|
510
|
+
chainId: number;
|
|
511
|
+
batcherContractAddress: string;
|
|
512
|
+
forwarderFactoryAddress: string;
|
|
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;
|
|
370
536
|
chainId: number;
|
|
371
537
|
batcherContractAddress: string;
|
|
372
538
|
forwarderFactoryAddress: string;
|
|
373
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;
|
|
@@ -482,6 +658,186 @@ declare class AtomTestnet extends Testnet implements AccountNetwork {
|
|
|
482
658
|
family: CoinFamily;
|
|
483
659
|
explorerUrl: string;
|
|
484
660
|
}
|
|
661
|
+
declare class Osmo extends Mainnet implements AccountNetwork {
|
|
662
|
+
name: string;
|
|
663
|
+
family: CoinFamily;
|
|
664
|
+
explorerUrl: string;
|
|
665
|
+
}
|
|
666
|
+
declare class OsmoTestnet extends Testnet implements AccountNetwork {
|
|
667
|
+
name: string;
|
|
668
|
+
family: CoinFamily;
|
|
669
|
+
explorerUrl: string;
|
|
670
|
+
}
|
|
671
|
+
declare class Tia extends Mainnet implements AccountNetwork {
|
|
672
|
+
name: string;
|
|
673
|
+
family: CoinFamily;
|
|
674
|
+
explorerUrl: string;
|
|
675
|
+
}
|
|
676
|
+
declare class TiaTestnet extends Testnet implements AccountNetwork {
|
|
677
|
+
name: string;
|
|
678
|
+
family: CoinFamily;
|
|
679
|
+
explorerUrl: string;
|
|
680
|
+
}
|
|
681
|
+
declare class Hash extends Mainnet implements AccountNetwork {
|
|
682
|
+
name: string;
|
|
683
|
+
family: CoinFamily;
|
|
684
|
+
explorerUrl: string;
|
|
685
|
+
}
|
|
686
|
+
declare class HashTestnet extends Testnet implements AccountNetwork {
|
|
687
|
+
name: string;
|
|
688
|
+
family: CoinFamily;
|
|
689
|
+
explorerUrl: string;
|
|
690
|
+
}
|
|
691
|
+
declare class Bld extends Mainnet implements AccountNetwork {
|
|
692
|
+
name: string;
|
|
693
|
+
family: CoinFamily;
|
|
694
|
+
explorerUrl: string;
|
|
695
|
+
}
|
|
696
|
+
declare class BldTestnet extends Testnet implements AccountNetwork {
|
|
697
|
+
name: string;
|
|
698
|
+
family: CoinFamily;
|
|
699
|
+
explorerUrl: string;
|
|
700
|
+
}
|
|
701
|
+
declare class Sei extends Mainnet implements AccountNetwork {
|
|
702
|
+
name: string;
|
|
703
|
+
family: CoinFamily;
|
|
704
|
+
explorerUrl: string;
|
|
705
|
+
}
|
|
706
|
+
declare class SeiTestnet extends Testnet implements AccountNetwork {
|
|
707
|
+
name: string;
|
|
708
|
+
family: CoinFamily;
|
|
709
|
+
explorerUrl: string;
|
|
710
|
+
}
|
|
711
|
+
declare class Zeta extends Mainnet implements AccountNetwork {
|
|
712
|
+
name: string;
|
|
713
|
+
family: CoinFamily;
|
|
714
|
+
explorerUrl: string;
|
|
715
|
+
}
|
|
716
|
+
declare class ZetaTestnet extends Testnet implements AccountNetwork {
|
|
717
|
+
name: string;
|
|
718
|
+
family: CoinFamily;
|
|
719
|
+
explorerUrl: string;
|
|
720
|
+
}
|
|
721
|
+
declare class Injective extends Mainnet implements AccountNetwork {
|
|
722
|
+
name: string;
|
|
723
|
+
family: CoinFamily;
|
|
724
|
+
explorerUrl: string;
|
|
725
|
+
}
|
|
726
|
+
declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
727
|
+
name: string;
|
|
728
|
+
family: CoinFamily;
|
|
729
|
+
explorerUrl: string;
|
|
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
|
+
}
|
|
485
841
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
486
842
|
name: string;
|
|
487
843
|
family: CoinFamily;
|
|
@@ -516,9 +872,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
516
872
|
family: CoinFamily;
|
|
517
873
|
explorerUrl: undefined;
|
|
518
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
|
+
}
|
|
519
890
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
520
891
|
name: string;
|
|
521
892
|
family: CoinFamily;
|
|
893
|
+
accountExplorerUrl: string;
|
|
522
894
|
explorerUrl: string;
|
|
523
895
|
maxFeeLimit: string;
|
|
524
896
|
contractCallFeeLimit: string;
|
|
@@ -526,6 +898,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
526
898
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
527
899
|
name: string;
|
|
528
900
|
family: CoinFamily;
|
|
901
|
+
accountExplorerUrl: string;
|
|
529
902
|
explorerUrl: string;
|
|
530
903
|
maxFeeLimit: string;
|
|
531
904
|
contractCallFeeLimit: string;
|
|
@@ -588,6 +961,9 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
588
961
|
forwarderImplementationAddress: string;
|
|
589
962
|
walletFactoryAddress: string;
|
|
590
963
|
walletImplementationAddress: string;
|
|
964
|
+
batcherContractAddress: string;
|
|
965
|
+
nativeCoinOperationHashPrefix: string;
|
|
966
|
+
tokenOperationHashPrefix: string;
|
|
591
967
|
}
|
|
592
968
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
593
969
|
name: string;
|
|
@@ -599,21 +975,582 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
599
975
|
forwarderImplementationAddress: string;
|
|
600
976
|
walletFactoryAddress: string;
|
|
601
977
|
walletImplementationAddress: string;
|
|
978
|
+
batcherContractAddress: string;
|
|
979
|
+
nativeCoinOperationHashPrefix: string;
|
|
980
|
+
tokenOperationHashPrefix: string;
|
|
981
|
+
}
|
|
982
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
983
|
+
name: string;
|
|
984
|
+
family: CoinFamily;
|
|
985
|
+
explorerUrl: string;
|
|
986
|
+
accountExplorerUrl: string;
|
|
987
|
+
chainId: number;
|
|
988
|
+
nativeCoinOperationHashPrefix: string;
|
|
989
|
+
tokenOperationHashPrefix: string;
|
|
990
|
+
forwarderFactoryAddress: string;
|
|
991
|
+
forwarderImplementationAddress: string;
|
|
992
|
+
walletFactoryAddress: string;
|
|
993
|
+
walletImplementationAddress: string;
|
|
994
|
+
batcherContractAddress: string;
|
|
995
|
+
}
|
|
996
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
997
|
+
name: string;
|
|
998
|
+
family: CoinFamily;
|
|
999
|
+
explorerUrl: string;
|
|
1000
|
+
accountExplorerUrl: string;
|
|
1001
|
+
chainId: number;
|
|
1002
|
+
nativeCoinOperationHashPrefix: string;
|
|
1003
|
+
tokenOperationHashPrefix: string;
|
|
1004
|
+
forwarderFactoryAddress: string;
|
|
1005
|
+
forwarderImplementationAddress: string;
|
|
1006
|
+
walletFactoryAddress: string;
|
|
1007
|
+
walletImplementationAddress: string;
|
|
1008
|
+
batcherContractAddress: string;
|
|
1009
|
+
}
|
|
1010
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
1011
|
+
name: string;
|
|
1012
|
+
family: CoinFamily;
|
|
1013
|
+
explorerUrl: string;
|
|
1014
|
+
accountExplorerUrl: string;
|
|
1015
|
+
chainId: number;
|
|
1016
|
+
nativeCoinOperationHashPrefix: string;
|
|
1017
|
+
tokenOperationHashPrefix: string;
|
|
1018
|
+
}
|
|
1019
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
1020
|
+
name: string;
|
|
1021
|
+
family: CoinFamily;
|
|
1022
|
+
explorerUrl: string;
|
|
1023
|
+
accountExplorerUrl: string;
|
|
1024
|
+
chainId: number;
|
|
1025
|
+
nativeCoinOperationHashPrefix: string;
|
|
1026
|
+
tokenOperationHashPrefix: string;
|
|
1027
|
+
forwarderFactoryAddress: string;
|
|
1028
|
+
forwarderImplementationAddress: string;
|
|
1029
|
+
walletFactoryAddress: string;
|
|
1030
|
+
walletImplementationAddress: string;
|
|
1031
|
+
}
|
|
1032
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
1033
|
+
name: string;
|
|
1034
|
+
family: CoinFamily;
|
|
1035
|
+
explorerUrl: string;
|
|
1036
|
+
accountExplorerUrl: string;
|
|
1037
|
+
chainId: number;
|
|
1038
|
+
nativeCoinOperationHashPrefix: string;
|
|
1039
|
+
tokenOperationHashPrefix: string;
|
|
1040
|
+
batcherContractAddress: string;
|
|
1041
|
+
forwarderFactoryAddress: string;
|
|
1042
|
+
forwarderImplementationAddress: string;
|
|
1043
|
+
}
|
|
1044
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1045
|
+
name: string;
|
|
1046
|
+
family: CoinFamily;
|
|
1047
|
+
explorerUrl: string;
|
|
1048
|
+
accountExplorerUrl: string;
|
|
1049
|
+
chainId: number;
|
|
1050
|
+
nativeCoinOperationHashPrefix: string;
|
|
1051
|
+
tokenOperationHashPrefix: string;
|
|
1052
|
+
batcherContractAddress: string;
|
|
1053
|
+
forwarderFactoryAddress: string;
|
|
1054
|
+
forwarderImplementationAddress: string;
|
|
1055
|
+
}
|
|
1056
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1057
|
+
name: string;
|
|
1058
|
+
family: CoinFamily;
|
|
1059
|
+
explorerUrl: string;
|
|
1060
|
+
accountExplorerUrl: string;
|
|
1061
|
+
chainId: number;
|
|
1062
|
+
nativeCoinOperationHashPrefix: string;
|
|
1063
|
+
batcherContractAddress: string;
|
|
1064
|
+
forwarderFactoryAddress: string;
|
|
1065
|
+
forwarderImplementationAddress: string;
|
|
1066
|
+
}
|
|
1067
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1068
|
+
name: string;
|
|
1069
|
+
family: CoinFamily;
|
|
1070
|
+
explorerUrl: string;
|
|
1071
|
+
accountExplorerUrl: string;
|
|
1072
|
+
chainId: number;
|
|
1073
|
+
nativeCoinOperationHashPrefix: string;
|
|
1074
|
+
batcherContractAddress: string;
|
|
1075
|
+
forwarderFactoryAddress: string;
|
|
1076
|
+
forwarderImplementationAddress: string;
|
|
1077
|
+
}
|
|
1078
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1079
|
+
name: string;
|
|
1080
|
+
family: CoinFamily;
|
|
1081
|
+
explorerUrl: string;
|
|
1082
|
+
accountExplorerUrl: string;
|
|
1083
|
+
chainId: number;
|
|
1084
|
+
nativeCoinOperationHashPrefix: string;
|
|
1085
|
+
batcherContractAddress: string;
|
|
1086
|
+
forwarderFactoryAddress: string;
|
|
1087
|
+
forwarderImplementationAddress: string;
|
|
1088
|
+
}
|
|
1089
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1090
|
+
name: string;
|
|
1091
|
+
family: CoinFamily;
|
|
1092
|
+
explorerUrl: string;
|
|
1093
|
+
accountExplorerUrl: string;
|
|
1094
|
+
chainId: number;
|
|
1095
|
+
nativeCoinOperationHashPrefix: string;
|
|
1096
|
+
batcherContractAddress: string;
|
|
1097
|
+
forwarderFactoryAddress: string;
|
|
1098
|
+
forwarderImplementationAddress: string;
|
|
1099
|
+
}
|
|
1100
|
+
declare class IP extends Mainnet implements EthereumNetwork {
|
|
1101
|
+
name: string;
|
|
1102
|
+
family: CoinFamily;
|
|
1103
|
+
explorerUrl: string;
|
|
1104
|
+
accountExplorerUrl: string;
|
|
1105
|
+
chainId: number;
|
|
1106
|
+
nativeCoinOperationHashPrefix: string;
|
|
1107
|
+
}
|
|
1108
|
+
declare class IPTestnet extends Testnet implements EthereumNetwork {
|
|
1109
|
+
name: string;
|
|
1110
|
+
family: CoinFamily;
|
|
1111
|
+
explorerUrl: string;
|
|
1112
|
+
accountExplorerUrl: string;
|
|
1113
|
+
chainId: number;
|
|
1114
|
+
nativeCoinOperationHashPrefix: string;
|
|
1115
|
+
}
|
|
1116
|
+
declare class ApeChain extends Mainnet implements EthereumNetwork {
|
|
1117
|
+
name: string;
|
|
1118
|
+
family: CoinFamily;
|
|
1119
|
+
explorerUrl: string;
|
|
1120
|
+
accountExplorerUrl: string;
|
|
1121
|
+
chainId: number;
|
|
1122
|
+
nativeCoinOperationHashPrefix: string;
|
|
1123
|
+
}
|
|
1124
|
+
declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1125
|
+
name: string;
|
|
1126
|
+
family: CoinFamily;
|
|
1127
|
+
explorerUrl: string;
|
|
1128
|
+
accountExplorerUrl: string;
|
|
1129
|
+
chainId: number;
|
|
1130
|
+
nativeCoinOperationHashPrefix: string;
|
|
1131
|
+
}
|
|
1132
|
+
declare class Pharos extends Mainnet implements EthereumNetwork {
|
|
1133
|
+
name: string;
|
|
1134
|
+
family: CoinFamily;
|
|
1135
|
+
explorerUrl: string;
|
|
1136
|
+
accountExplorerUrl: string;
|
|
1137
|
+
chainId: number;
|
|
1138
|
+
nativeCoinOperationHashPrefix: string;
|
|
1139
|
+
}
|
|
1140
|
+
declare class PharosTestnet extends Testnet implements EthereumNetwork {
|
|
1141
|
+
name: string;
|
|
1142
|
+
family: CoinFamily;
|
|
1143
|
+
explorerUrl: string;
|
|
1144
|
+
accountExplorerUrl: string;
|
|
1145
|
+
chainId: number;
|
|
1146
|
+
nativeCoinOperationHashPrefix: string;
|
|
1147
|
+
}
|
|
1148
|
+
declare class Creditcoin extends Mainnet implements EthereumNetwork {
|
|
1149
|
+
name: string;
|
|
1150
|
+
family: CoinFamily;
|
|
1151
|
+
explorerUrl: string;
|
|
1152
|
+
accountExplorerUrl: string;
|
|
1153
|
+
chainId: number;
|
|
1154
|
+
nativeCoinOperationHashPrefix: string;
|
|
1155
|
+
}
|
|
1156
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1157
|
+
name: string;
|
|
1158
|
+
family: CoinFamily;
|
|
1159
|
+
explorerUrl: string;
|
|
1160
|
+
accountExplorerUrl: string;
|
|
1161
|
+
chainId: number;
|
|
1162
|
+
nativeCoinOperationHashPrefix: string;
|
|
1163
|
+
}
|
|
1164
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1165
|
+
name: string;
|
|
1166
|
+
family: CoinFamily;
|
|
1167
|
+
explorerUrl: string;
|
|
1168
|
+
accountExplorerUrl: string;
|
|
1169
|
+
chainId: number;
|
|
1170
|
+
nativeCoinOperationHashPrefix: string;
|
|
1171
|
+
}
|
|
1172
|
+
declare class LineaETH extends Mainnet implements EthereumNetwork {
|
|
1173
|
+
name: string;
|
|
1174
|
+
family: CoinFamily;
|
|
1175
|
+
explorerUrl: string;
|
|
1176
|
+
accountExplorerUrl: string;
|
|
1177
|
+
chainId: number;
|
|
1178
|
+
nativeCoinOperationHashPrefix: string;
|
|
1179
|
+
}
|
|
1180
|
+
declare class LineaETHTestnet extends Testnet implements EthereumNetwork {
|
|
1181
|
+
name: string;
|
|
1182
|
+
family: CoinFamily;
|
|
1183
|
+
explorerUrl: string;
|
|
1184
|
+
accountExplorerUrl: string;
|
|
1185
|
+
chainId: number;
|
|
1186
|
+
nativeCoinOperationHashPrefix: string;
|
|
1187
|
+
}
|
|
1188
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1189
|
+
name: string;
|
|
1190
|
+
family: CoinFamily;
|
|
1191
|
+
explorerUrl: string;
|
|
1192
|
+
accountExplorerUrl: string;
|
|
1193
|
+
chainId: number;
|
|
1194
|
+
nativeCoinOperationHashPrefix: string;
|
|
1195
|
+
}
|
|
1196
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1197
|
+
name: string;
|
|
1198
|
+
family: CoinFamily;
|
|
1199
|
+
explorerUrl: string;
|
|
1200
|
+
accountExplorerUrl: string;
|
|
1201
|
+
chainId: number;
|
|
1202
|
+
nativeCoinOperationHashPrefix: string;
|
|
1203
|
+
}
|
|
1204
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1205
|
+
name: string;
|
|
1206
|
+
family: CoinFamily;
|
|
1207
|
+
explorerUrl: string;
|
|
1208
|
+
accountExplorerUrl: string;
|
|
1209
|
+
chainId: number;
|
|
1210
|
+
nativeCoinOperationHashPrefix: string;
|
|
1211
|
+
}
|
|
1212
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1213
|
+
name: string;
|
|
1214
|
+
family: CoinFamily;
|
|
1215
|
+
explorerUrl: string;
|
|
1216
|
+
accountExplorerUrl: string;
|
|
1217
|
+
chainId: number;
|
|
1218
|
+
nativeCoinOperationHashPrefix: string;
|
|
1219
|
+
}
|
|
1220
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1221
|
+
name: string;
|
|
1222
|
+
family: CoinFamily;
|
|
1223
|
+
explorerUrl: string;
|
|
1224
|
+
accountExplorerUrl: string;
|
|
1225
|
+
chainId: number;
|
|
1226
|
+
nativeCoinOperationHashPrefix: string;
|
|
1227
|
+
}
|
|
1228
|
+
declare class Irys extends Mainnet implements EthereumNetwork {
|
|
1229
|
+
name: string;
|
|
1230
|
+
family: CoinFamily;
|
|
1231
|
+
explorerUrl: string;
|
|
1232
|
+
accountExplorerUrl: string;
|
|
1233
|
+
chainId: number;
|
|
1234
|
+
nativeCoinOperationHashPrefix: string;
|
|
1235
|
+
}
|
|
1236
|
+
declare class IrysTestnet extends Testnet implements EthereumNetwork {
|
|
1237
|
+
name: string;
|
|
1238
|
+
family: CoinFamily;
|
|
1239
|
+
explorerUrl: string;
|
|
1240
|
+
accountExplorerUrl: string;
|
|
1241
|
+
chainId: number;
|
|
1242
|
+
nativeCoinOperationHashPrefix: string;
|
|
1243
|
+
}
|
|
1244
|
+
declare class Og extends Mainnet implements EthereumNetwork {
|
|
1245
|
+
name: string;
|
|
1246
|
+
family: CoinFamily;
|
|
1247
|
+
explorerUrl: string;
|
|
1248
|
+
accountExplorerUrl: string;
|
|
1249
|
+
chainId: number;
|
|
1250
|
+
nativeCoinOperationHashPrefix: string;
|
|
1251
|
+
}
|
|
1252
|
+
declare class OgTestnet extends Testnet implements EthereumNetwork {
|
|
1253
|
+
name: string;
|
|
1254
|
+
family: CoinFamily;
|
|
1255
|
+
explorerUrl: string;
|
|
1256
|
+
accountExplorerUrl: string;
|
|
1257
|
+
chainId: number;
|
|
1258
|
+
nativeCoinOperationHashPrefix: string;
|
|
1259
|
+
}
|
|
1260
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1261
|
+
name: string;
|
|
1262
|
+
family: CoinFamily;
|
|
1263
|
+
explorerUrl: string;
|
|
1264
|
+
accountExplorerUrl: string;
|
|
1265
|
+
chainId: number;
|
|
1266
|
+
nativeCoinOperationHashPrefix: string;
|
|
1267
|
+
batcherContractAddress: string;
|
|
1268
|
+
forwarderFactoryAddress: string;
|
|
1269
|
+
forwarderImplementationAddress: string;
|
|
1270
|
+
}
|
|
1271
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1272
|
+
name: string;
|
|
1273
|
+
family: CoinFamily;
|
|
1274
|
+
explorerUrl: string;
|
|
1275
|
+
accountExplorerUrl: string;
|
|
1276
|
+
chainId: number;
|
|
1277
|
+
nativeCoinOperationHashPrefix: string;
|
|
1278
|
+
batcherContractAddress: string;
|
|
1279
|
+
forwarderFactoryAddress: string;
|
|
1280
|
+
forwarderImplementationAddress: string;
|
|
1281
|
+
}
|
|
1282
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1283
|
+
name: string;
|
|
1284
|
+
family: CoinFamily;
|
|
1285
|
+
explorerUrl: string;
|
|
1286
|
+
accountExplorerUrl: string;
|
|
1287
|
+
chainId: number;
|
|
1288
|
+
nativeCoinOperationHashPrefix: string;
|
|
1289
|
+
batcherContractAddress: string;
|
|
1290
|
+
forwarderFactoryAddress: string;
|
|
1291
|
+
forwarderImplementationAddress: string;
|
|
1292
|
+
}
|
|
1293
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1294
|
+
name: string;
|
|
1295
|
+
family: CoinFamily;
|
|
1296
|
+
explorerUrl: string;
|
|
1297
|
+
accountExplorerUrl: string;
|
|
1298
|
+
chainId: number;
|
|
1299
|
+
nativeCoinOperationHashPrefix: string;
|
|
1300
|
+
batcherContractAddress: string;
|
|
1301
|
+
forwarderFactoryAddress: string;
|
|
1302
|
+
forwarderImplementationAddress: string;
|
|
1303
|
+
}
|
|
1304
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1305
|
+
name: string;
|
|
1306
|
+
family: CoinFamily;
|
|
1307
|
+
explorerUrl: string;
|
|
1308
|
+
accountExplorerUrl: string;
|
|
1309
|
+
chainId: number;
|
|
1310
|
+
nativeCoinOperationHashPrefix: string;
|
|
1311
|
+
walletFactoryAddress: string;
|
|
1312
|
+
batcherContractAddress: string;
|
|
1313
|
+
forwarderFactoryAddress: string;
|
|
1314
|
+
forwarderImplementationAddress: string;
|
|
1315
|
+
walletImplementationAddress: string;
|
|
1316
|
+
}
|
|
1317
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1318
|
+
name: string;
|
|
1319
|
+
family: CoinFamily;
|
|
1320
|
+
explorerUrl: string;
|
|
1321
|
+
chainId: number;
|
|
1322
|
+
nativeCoinOperationHashPrefix: string;
|
|
1323
|
+
walletImplementationAddress: string;
|
|
1324
|
+
batcherContractAddress: string;
|
|
1325
|
+
forwarderFactoryAddress: string;
|
|
1326
|
+
forwarderImplementationAddress: string;
|
|
1327
|
+
}
|
|
1328
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1329
|
+
name: string;
|
|
1330
|
+
family: CoinFamily;
|
|
1331
|
+
explorerUrl: string;
|
|
1332
|
+
accountExplorerUrl: string;
|
|
1333
|
+
chainId: number;
|
|
1334
|
+
nativeCoinOperationHashPrefix: string;
|
|
1335
|
+
walletImplementationAddress: string;
|
|
1336
|
+
batcherContractAddress: string;
|
|
1337
|
+
forwarderFactoryAddress: string;
|
|
1338
|
+
forwarderImplementationAddress: string;
|
|
1339
|
+
}
|
|
1340
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1341
|
+
name: string;
|
|
1342
|
+
family: CoinFamily;
|
|
1343
|
+
explorerUrl: string;
|
|
1344
|
+
accountExplorerUrl: string;
|
|
1345
|
+
chainId: number;
|
|
1346
|
+
nativeCoinOperationHashPrefix: string;
|
|
1347
|
+
batcherContractAddress: string;
|
|
1348
|
+
forwarderFactoryAddress: string;
|
|
1349
|
+
forwarderImplementationAddress: string;
|
|
1350
|
+
walletImplementationAddress: string;
|
|
1351
|
+
}
|
|
1352
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1353
|
+
name: string;
|
|
1354
|
+
family: CoinFamily;
|
|
1355
|
+
explorerUrl: string;
|
|
1356
|
+
accountExplorerUrl: string;
|
|
1357
|
+
chainId: number;
|
|
1358
|
+
nativeCoinOperationHashPrefix: string;
|
|
1359
|
+
walletImplementationAddress: string;
|
|
1360
|
+
walletFactoryAddress: string;
|
|
1361
|
+
batcherContractAddress: string;
|
|
1362
|
+
forwarderFactoryAddress: string;
|
|
1363
|
+
forwarderImplementationAddress: string;
|
|
1364
|
+
}
|
|
1365
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1366
|
+
name: string;
|
|
1367
|
+
family: CoinFamily;
|
|
1368
|
+
explorerUrl: string;
|
|
1369
|
+
accountExplorerUrl: string;
|
|
1370
|
+
chainId: number;
|
|
1371
|
+
nativeCoinOperationHashPrefix: string;
|
|
1372
|
+
walletFactoryAddress: string;
|
|
1373
|
+
batcherContractAddress: string;
|
|
1374
|
+
forwarderFactoryAddress: string;
|
|
1375
|
+
forwarderImplementationAddress: string;
|
|
1376
|
+
walletImplementationAddress: string;
|
|
1377
|
+
}
|
|
1378
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1379
|
+
name: string;
|
|
1380
|
+
family: CoinFamily;
|
|
1381
|
+
explorerUrl: string;
|
|
1382
|
+
accountExplorerUrl: string;
|
|
1383
|
+
chainId: number;
|
|
1384
|
+
nativeCoinOperationHashPrefix: string;
|
|
1385
|
+
}
|
|
1386
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1387
|
+
name: string;
|
|
1388
|
+
family: CoinFamily;
|
|
1389
|
+
explorerUrl: string;
|
|
1390
|
+
accountExplorerUrl: string;
|
|
1391
|
+
chainId: number;
|
|
1392
|
+
nativeCoinOperationHashPrefix: string;
|
|
1393
|
+
}
|
|
1394
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1395
|
+
name: string;
|
|
1396
|
+
family: CoinFamily;
|
|
1397
|
+
explorerUrl: string;
|
|
1398
|
+
chainId: number;
|
|
1399
|
+
nativeCoinOperationHashPrefix: string;
|
|
1400
|
+
}
|
|
1401
|
+
declare class SomniaTestnet 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 Somi extends Mainnet implements EthereumNetwork {
|
|
1415
|
+
name: string;
|
|
1416
|
+
family: CoinFamily;
|
|
1417
|
+
explorerUrl: string;
|
|
1418
|
+
chainId: number;
|
|
1419
|
+
nativeCoinOperationHashPrefix: string;
|
|
1420
|
+
}
|
|
1421
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1422
|
+
name: string;
|
|
1423
|
+
family: CoinFamily;
|
|
1424
|
+
explorerUrl: string;
|
|
1425
|
+
accountExplorerUrl: string;
|
|
1426
|
+
chainId: number;
|
|
1427
|
+
nativeCoinOperationHashPrefix: string;
|
|
1428
|
+
batcherContractAddress: string;
|
|
1429
|
+
forwarderFactoryAddress: string;
|
|
1430
|
+
forwarderImplementationAddress: string;
|
|
1431
|
+
}
|
|
1432
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1433
|
+
name: string;
|
|
1434
|
+
family: CoinFamily;
|
|
1435
|
+
explorerUrl: string;
|
|
1436
|
+
accountExplorerUrl: string;
|
|
1437
|
+
chainId: number;
|
|
1438
|
+
nativeCoinOperationHashPrefix: string;
|
|
1439
|
+
batcherContractAddress: string;
|
|
1440
|
+
forwarderFactoryAddress: string;
|
|
1441
|
+
forwarderImplementationAddress: string;
|
|
1442
|
+
}
|
|
1443
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1444
|
+
name: string;
|
|
1445
|
+
family: CoinFamily;
|
|
1446
|
+
explorerUrl: string;
|
|
1447
|
+
accountExplorerUrl: string;
|
|
1448
|
+
chainId: number;
|
|
1449
|
+
nativeCoinOperationHashPrefix: string;
|
|
1450
|
+
batcherContractAddress: string;
|
|
1451
|
+
forwarderFactoryAddress: string;
|
|
1452
|
+
forwarderImplementationAddress: string;
|
|
1453
|
+
}
|
|
1454
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1455
|
+
name: string;
|
|
1456
|
+
family: CoinFamily;
|
|
1457
|
+
explorerUrl: string;
|
|
1458
|
+
accountExplorerUrl: string;
|
|
1459
|
+
chainId: number;
|
|
1460
|
+
nativeCoinOperationHashPrefix: string;
|
|
1461
|
+
batcherContractAddress: string;
|
|
1462
|
+
forwarderFactoryAddress: string;
|
|
1463
|
+
forwarderImplementationAddress: string;
|
|
1464
|
+
}
|
|
1465
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1466
|
+
name: string;
|
|
1467
|
+
family: CoinFamily;
|
|
1468
|
+
explorerUrl: string;
|
|
1469
|
+
accountExplorerUrl: string;
|
|
1470
|
+
chainId: number;
|
|
1471
|
+
nativeCoinOperationHashPrefix: string;
|
|
1472
|
+
tokenOperationHashPrefix: string;
|
|
1473
|
+
forwarderFactoryAddress: string;
|
|
1474
|
+
forwarderImplementationAddress: string;
|
|
1475
|
+
walletFactoryAddress: string;
|
|
1476
|
+
walletImplementationAddress: string;
|
|
1477
|
+
}
|
|
1478
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1479
|
+
name: string;
|
|
1480
|
+
family: CoinFamily;
|
|
1481
|
+
explorerUrl: string;
|
|
1482
|
+
accountExplorerUrl: string;
|
|
1483
|
+
chainId: number;
|
|
1484
|
+
nativeCoinOperationHashPrefix: string;
|
|
1485
|
+
tokenOperationHashPrefix: string;
|
|
1486
|
+
forwarderFactoryAddress: string;
|
|
1487
|
+
forwarderImplementationAddress: string;
|
|
1488
|
+
walletFactoryAddress: string;
|
|
1489
|
+
walletImplementationAddress: string;
|
|
1490
|
+
}
|
|
1491
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1492
|
+
name: string;
|
|
1493
|
+
family: CoinFamily;
|
|
1494
|
+
explorerUrl: string;
|
|
1495
|
+
specName: string;
|
|
1496
|
+
genesisHash: string;
|
|
1497
|
+
specVersion: number;
|
|
1498
|
+
chainName: string;
|
|
1499
|
+
txVersion: number;
|
|
1500
|
+
}
|
|
1501
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1502
|
+
name: string;
|
|
1503
|
+
family: CoinFamily;
|
|
1504
|
+
explorerUrl: string;
|
|
1505
|
+
specName: SubstrateSpecNameType;
|
|
1506
|
+
genesisHash: string;
|
|
1507
|
+
specVersion: number;
|
|
1508
|
+
chainName: string;
|
|
1509
|
+
txVersion: number;
|
|
1510
|
+
}
|
|
1511
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1512
|
+
name: string;
|
|
1513
|
+
family: CoinFamily;
|
|
1514
|
+
explorerUrl: string;
|
|
1515
|
+
accountExplorerUrl: string;
|
|
1516
|
+
chainId: number;
|
|
1517
|
+
forwarderFactoryAddress: string;
|
|
1518
|
+
forwarderImplementationAddress: string;
|
|
1519
|
+
}
|
|
1520
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1521
|
+
name: string;
|
|
1522
|
+
family: CoinFamily;
|
|
1523
|
+
explorerUrl: string;
|
|
1524
|
+
accountExplorerUrl: string;
|
|
1525
|
+
chainId: number;
|
|
1526
|
+
forwarderFactoryAddress: string;
|
|
1527
|
+
forwarderImplementationAddress: string;
|
|
602
1528
|
}
|
|
603
1529
|
export declare const Networks: {
|
|
604
1530
|
main: {
|
|
605
1531
|
ada: Readonly<Ada>;
|
|
606
1532
|
algorand: Readonly<Algorand>;
|
|
1533
|
+
apechain: Readonly<ApeChain>;
|
|
1534
|
+
apt: Readonly<Apt>;
|
|
1535
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1536
|
+
asi: Readonly<Asi>;
|
|
607
1537
|
atom: Readonly<Atom>;
|
|
608
1538
|
avalancheC: Readonly<AvalancheC>;
|
|
609
1539
|
avalancheP: Readonly<AvalancheP>;
|
|
1540
|
+
baby: Readonly<Baby>;
|
|
1541
|
+
basechain: Readonly<BaseChain>;
|
|
610
1542
|
bitcoin: Readonly<Bitcoin>;
|
|
611
1543
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
612
1544
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
613
1545
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1546
|
+
bera: Readonly<Berachain>;
|
|
1547
|
+
bld: Readonly<Bld>;
|
|
614
1548
|
bsc: Readonly<BinanceSmartChain>;
|
|
615
1549
|
casper: Readonly<Casper>;
|
|
616
1550
|
celo: Readonly<Celo>;
|
|
1551
|
+
coredao: Readonly<Coredao>;
|
|
1552
|
+
coreum: Readonly<Coreum>;
|
|
1553
|
+
cronos: Readonly<Cronos>;
|
|
617
1554
|
dash: Readonly<Dash>;
|
|
618
1555
|
dogecoin: Readonly<Dogecoin>;
|
|
619
1556
|
dot: Readonly<Polkadot>;
|
|
@@ -624,60 +1561,155 @@ export declare const Networks: {
|
|
|
624
1561
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
625
1562
|
ethereumW: Readonly<EthereumW>;
|
|
626
1563
|
fiat: Readonly<Fiat>;
|
|
1564
|
+
fetchai: Readonly<FetchAi>;
|
|
1565
|
+
flr: Readonly<Flare>;
|
|
1566
|
+
hash: Readonly<Hash>;
|
|
627
1567
|
hedera: Readonly<Hedera>;
|
|
1568
|
+
icp: Readonly<Icp>;
|
|
1569
|
+
ip: Readonly<IP>;
|
|
1570
|
+
initia: Readonly<Initia>;
|
|
1571
|
+
injective: Readonly<Injective>;
|
|
1572
|
+
irys: Readonly<Irys>;
|
|
1573
|
+
islm: Readonly<Islm>;
|
|
1574
|
+
kaia: Readonly<Kaia>;
|
|
1575
|
+
kava: Readonly<Kava>;
|
|
1576
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
628
1577
|
litecoin: Readonly<Litecoin>;
|
|
1578
|
+
mon: Readonly<Monad>;
|
|
1579
|
+
mantra: Readonly<Mantra>;
|
|
629
1580
|
polygon: Readonly<Polygon>;
|
|
1581
|
+
polyx: Readonly<Polymesh>;
|
|
1582
|
+
phrs: Readonly<Pharos>;
|
|
1583
|
+
ctc: Readonly<Creditcoin>;
|
|
1584
|
+
hypeevm: Readonly<HypeEVM>;
|
|
1585
|
+
lineaeth: Readonly<LineaETH>;
|
|
1586
|
+
oas: Readonly<Oas>;
|
|
1587
|
+
og: Readonly<Og>;
|
|
630
1588
|
ofc: Readonly<Ofc>;
|
|
1589
|
+
optimism: Readonly<Optimism>;
|
|
1590
|
+
osmo: Readonly<Osmo>;
|
|
631
1591
|
rbtc: Readonly<Rbtc>;
|
|
1592
|
+
rune: Readonly<Rune>;
|
|
632
1593
|
stellar: Readonly<Stellar>;
|
|
1594
|
+
sei: Readonly<Sei>;
|
|
1595
|
+
seievm: Readonly<SeiEvm>;
|
|
1596
|
+
sgb: Readonly<Songbird>;
|
|
633
1597
|
sol: Readonly<Sol>;
|
|
1598
|
+
sonic: Readonly<Sonic>;
|
|
634
1599
|
sui: Readonly<Sui>;
|
|
635
1600
|
near: Readonly<Near>;
|
|
636
1601
|
stx: Readonly<Stx>;
|
|
1602
|
+
stt: Readonly<Somnia>;
|
|
1603
|
+
somi: Readonly<Somi>;
|
|
1604
|
+
soneium: Readonly<Soneium>;
|
|
637
1605
|
susd: Readonly<SUSD>;
|
|
1606
|
+
tao: Readonly<Bittensor>;
|
|
1607
|
+
tia: Readonly<Tia>;
|
|
1608
|
+
ton: Readonly<Ton>;
|
|
638
1609
|
trx: Readonly<Trx>;
|
|
1610
|
+
vet: Readonly<Vet>;
|
|
1611
|
+
wemix: Readonly<Wemix>;
|
|
1612
|
+
world: Readonly<World>;
|
|
1613
|
+
xdc: Readonly<Xdc>;
|
|
639
1614
|
xrp: Readonly<Xrp>;
|
|
640
1615
|
xtz: Readonly<Xtz>;
|
|
641
1616
|
zCash: Readonly<ZCash>;
|
|
1617
|
+
zeta: Readonly<Zeta>;
|
|
1618
|
+
zkSync: Readonly<ZkSync>;
|
|
642
1619
|
};
|
|
643
1620
|
test: {
|
|
644
1621
|
ada: Readonly<AdaTestnet>;
|
|
645
1622
|
algorand: Readonly<AlgorandTestnet>;
|
|
1623
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1624
|
+
apt: Readonly<AptTestnet>;
|
|
1625
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1626
|
+
asi: Readonly<AsiTestnet>;
|
|
646
1627
|
atom: Readonly<AtomTestnet>;
|
|
647
1628
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
648
1629
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1630
|
+
baby: Readonly<BabyTestnet>;
|
|
1631
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
649
1632
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1633
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1634
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1635
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
650
1636
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
651
1637
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
652
1638
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1639
|
+
bera: Readonly<BerachainTestnet>;
|
|
1640
|
+
bld: Readonly<BldTestnet>;
|
|
653
1641
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
654
1642
|
casper: Readonly<CasperTestnet>;
|
|
1643
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
655
1644
|
celo: Readonly<CeloTestnet>;
|
|
1645
|
+
cronos: Readonly<CronosTestnet>;
|
|
656
1646
|
dash: Readonly<DashTestnet>;
|
|
657
1647
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
658
1648
|
dot: Readonly<PolkadotTestnet>;
|
|
659
1649
|
eCash: Readonly<ECashTestnet>;
|
|
660
1650
|
eos: Readonly<EosTestnet>;
|
|
661
1651
|
fiat: Readonly<FiatTestnet>;
|
|
1652
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1653
|
+
flr: Readonly<FlareTestnet>;
|
|
1654
|
+
mon: Readonly<MonadTestnet>;
|
|
662
1655
|
pyrmont: Readonly<Pyrmont>;
|
|
663
1656
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
1657
|
+
hash: Readonly<HashTestnet>;
|
|
664
1658
|
hedera: Readonly<HederaTestnet>;
|
|
1659
|
+
icp: Readonly<IcpTestnet>;
|
|
1660
|
+
ip: Readonly<IPTestnet>;
|
|
1661
|
+
initia: Readonly<InitiaTestnet>;
|
|
1662
|
+
injective: Readonly<InjectiveTestnet>;
|
|
1663
|
+
irys: Readonly<IrysTestnet>;
|
|
1664
|
+
islm: Readonly<IslmTestnet>;
|
|
1665
|
+
kava: Readonly<KavaTestnet>;
|
|
665
1666
|
kovan: Readonly<Kovan>;
|
|
666
1667
|
goerli: Readonly<Goerli>;
|
|
1668
|
+
holesky: Readonly<Holesky>;
|
|
1669
|
+
hoodi: Readonly<Hoodi>;
|
|
1670
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
667
1671
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1672
|
+
mantra: Readonly<MantraTestnet>;
|
|
668
1673
|
polygon: Readonly<PolygonTestnet>;
|
|
1674
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1675
|
+
phrs: Readonly<PharosTestnet>;
|
|
1676
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
1677
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
1678
|
+
lineaeth: Readonly<LineaETHTestnet>;
|
|
1679
|
+
oas: Readonly<OasTestnet>;
|
|
1680
|
+
og: Readonly<OgTestnet>;
|
|
669
1681
|
ofc: Readonly<OfcTestnet>;
|
|
1682
|
+
optimism: Readonly<OptimismTestnet>;
|
|
1683
|
+
osmo: Readonly<OsmoTestnet>;
|
|
670
1684
|
rbtc: Readonly<RbtcTestnet>;
|
|
1685
|
+
rune: Readonly<RuneTestNet>;
|
|
1686
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
671
1687
|
stellar: Readonly<StellarTestnet>;
|
|
1688
|
+
sei: Readonly<SeiTestnet>;
|
|
1689
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
672
1690
|
sol: Readonly<SolTestnet>;
|
|
673
1691
|
sui: Readonly<SuiTestnet>;
|
|
674
1692
|
near: Readonly<NearTestnet>;
|
|
675
1693
|
stx: Readonly<StxTestnet>;
|
|
1694
|
+
stt: Readonly<SomniaTestnet>;
|
|
1695
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
1696
|
+
sonic: Readonly<SonicTestnet>;
|
|
1697
|
+
kaia: Readonly<KaiaTestnet>;
|
|
676
1698
|
susd: Readonly<SUSDTestnet>;
|
|
1699
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1700
|
+
tao: Readonly<BittensorTestnet>;
|
|
1701
|
+
tia: Readonly<TiaTestnet>;
|
|
1702
|
+
ton: Readonly<TonTestnet>;
|
|
677
1703
|
trx: Readonly<TrxTestnet>;
|
|
1704
|
+
vet: Readonly<VetTestnet>;
|
|
1705
|
+
wemix: Readonly<WemixTestnet>;
|
|
1706
|
+
world: Readonly<WorldTestnet>;
|
|
1707
|
+
xdc: Readonly<XdcTestnet>;
|
|
678
1708
|
xrp: Readonly<XrpTestnet>;
|
|
679
1709
|
xtz: Readonly<XtzTestnet>;
|
|
680
1710
|
zCash: Readonly<ZCashTestnet>;
|
|
1711
|
+
zeta: Readonly<ZetaTestnet>;
|
|
1712
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
681
1713
|
};
|
|
682
1714
|
};
|
|
683
1715
|
export {};
|