@bitgo-beta/statics 10.0.1-alpha.30 → 10.0.1-alpha.301
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 +2795 -0
- package/dist/src/account.d.ts +399 -21
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +654 -76
- 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 +8 -3
- package/dist/src/base.d.ts +1322 -31
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1378 -48
- package/dist/src/coinFeatures.d.ts +80 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +458 -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 +93 -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 +137 -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 +1351 -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 +278 -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 +1279 -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 +136 -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 +18 -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 +330 -0
- package/dist/src/coins.d.ts +2 -0
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +533 -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/gatekeep.d.ts +2 -0
- package/dist/src/gatekeep.d.ts.map +1 -0
- package/dist/src/gatekeep.js +1794 -0
- package/dist/src/index.d.ts +3 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +17 -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 +2 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +58 -3
- package/dist/src/networks.d.ts +611 -4
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +838 -52
- package/dist/src/ofc.d.ts +313 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +653 -14
- package/dist/src/tokenConfig.d.ts +108 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +267 -115
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +78 -3
- package/dist/tsconfig.tsbuildinfo +1 -2744
- package/package.json +2 -2
- package/dist/resources/dot/index.d.ts +0 -3
- package/dist/resources/dot/index.d.ts.map +0 -1
- package/dist/resources/dot/index.js +0 -15
- package/dist/resources/dot/mainnet.d.ts +0 -2
- package/dist/resources/dot/mainnet.d.ts.map +0 -1
- package/dist/resources/dot/mainnet.js +0 -5
- package/dist/resources/dot/westend.d.ts +0 -2
- package/dist/resources/dot/westend.d.ts.map +0 -1
- package/dist/resources/dot/westend.js +0 -5
- package/resources/dot/index.ts +0 -2
- package/resources/dot/mainnet.ts +0 -2
- package/resources/dot/westend.ts +0 -2
package/dist/src/networks.d.ts
CHANGED
|
@@ -12,6 +12,14 @@ export declare abstract class BaseNetwork {
|
|
|
12
12
|
export interface UtxoNetwork extends BaseNetwork {
|
|
13
13
|
utxolibName: string;
|
|
14
14
|
}
|
|
15
|
+
export interface LightningNetwork extends UtxoNetwork {
|
|
16
|
+
/**
|
|
17
|
+
* The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
18
|
+
* between the user's extended private key and the Lightning service. This key facilitates secure communication
|
|
19
|
+
* by enabling the creation of a shared secret for encryption and decryption of data.
|
|
20
|
+
*/
|
|
21
|
+
lightningServicePubKey: string;
|
|
22
|
+
}
|
|
15
23
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
24
|
utxolibName: string;
|
|
17
25
|
poolDeposit: number;
|
|
@@ -40,20 +48,22 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
48
|
readonly minDelegationFee: string;
|
|
41
49
|
readonly avaxAssetID: string;
|
|
42
50
|
readonly txFee: string;
|
|
51
|
+
readonly maxImportFee: string;
|
|
43
52
|
}
|
|
44
53
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
54
|
readonly accountExplorerUrl?: string;
|
|
55
|
+
readonly blockExplorerUrl?: string;
|
|
46
56
|
}
|
|
47
57
|
/**
|
|
48
58
|
* Specification name type of the chain. Used in setting up the registry
|
|
49
59
|
*/
|
|
50
|
-
export
|
|
60
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
61
|
+
export type BittensorSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor';
|
|
51
62
|
export interface DotNetwork extends AccountNetwork {
|
|
52
63
|
readonly specName: PolkadotSpecNameType;
|
|
53
64
|
readonly genesisHash: string;
|
|
54
65
|
readonly specVersion: number;
|
|
55
66
|
readonly chainName: string;
|
|
56
|
-
readonly metadataRpc: `0x${string}`;
|
|
57
67
|
readonly txVersion: number;
|
|
58
68
|
}
|
|
59
69
|
export interface EthereumNetwork extends AccountNetwork {
|
|
@@ -61,6 +71,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
71
|
readonly batcherContractAddress?: string;
|
|
62
72
|
readonly forwarderFactoryAddress?: string;
|
|
63
73
|
readonly forwarderImplementationAddress?: string;
|
|
74
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
75
|
+
readonly tokenOperationHashPrefix?: string;
|
|
64
76
|
}
|
|
65
77
|
export interface TronNetwork extends AccountNetwork {
|
|
66
78
|
maxFeeLimit: string;
|
|
@@ -110,6 +122,60 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
122
|
poolDeposit: number;
|
|
111
123
|
stakeKeyDeposit: number;
|
|
112
124
|
}
|
|
125
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
126
|
+
name: string;
|
|
127
|
+
family: CoinFamily;
|
|
128
|
+
explorerUrl: string;
|
|
129
|
+
accountExplorerUrl: string;
|
|
130
|
+
blockExplorerUrl: string;
|
|
131
|
+
}
|
|
132
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
133
|
+
name: string;
|
|
134
|
+
family: CoinFamily;
|
|
135
|
+
explorerUrl: string;
|
|
136
|
+
accountExplorerUrl: string;
|
|
137
|
+
blockExplorerUrl: string;
|
|
138
|
+
}
|
|
139
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
140
|
+
name: string;
|
|
141
|
+
family: CoinFamily;
|
|
142
|
+
explorerUrl: string;
|
|
143
|
+
accountExplorerUrl: string;
|
|
144
|
+
blockExplorerUrl: string;
|
|
145
|
+
}
|
|
146
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
147
|
+
name: string;
|
|
148
|
+
family: CoinFamily;
|
|
149
|
+
explorerUrl: string;
|
|
150
|
+
accountExplorerUrl: string;
|
|
151
|
+
blockExplorerUrl: string;
|
|
152
|
+
}
|
|
153
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
154
|
+
name: string;
|
|
155
|
+
family: CoinFamily;
|
|
156
|
+
explorerUrl: string;
|
|
157
|
+
accountExplorerUrl: string;
|
|
158
|
+
chainId: number;
|
|
159
|
+
nativeCoinOperationHashPrefix: string;
|
|
160
|
+
tokenOperationHashPrefix: string;
|
|
161
|
+
forwarderFactoryAddress: string;
|
|
162
|
+
forwarderImplementationAddress: string;
|
|
163
|
+
walletFactoryAddress: string;
|
|
164
|
+
walletImplementationAddress: string;
|
|
165
|
+
}
|
|
166
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
167
|
+
name: string;
|
|
168
|
+
family: CoinFamily;
|
|
169
|
+
explorerUrl: string;
|
|
170
|
+
accountExplorerUrl: string;
|
|
171
|
+
chainId: number;
|
|
172
|
+
nativeCoinOperationHashPrefix: string;
|
|
173
|
+
tokenOperationHashPrefix: string;
|
|
174
|
+
forwarderFactoryAddress: string;
|
|
175
|
+
forwarderImplementationAddress: string;
|
|
176
|
+
walletFactoryAddress: string;
|
|
177
|
+
walletImplementationAddress: string;
|
|
178
|
+
}
|
|
113
179
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
180
|
name: string;
|
|
115
181
|
family: CoinFamily;
|
|
@@ -137,6 +203,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
203
|
alias: string;
|
|
138
204
|
vm: string;
|
|
139
205
|
txFee: string;
|
|
206
|
+
maxImportFee: string;
|
|
140
207
|
createSubnetTx: string;
|
|
141
208
|
createChainTx: string;
|
|
142
209
|
creationTxFee: string;
|
|
@@ -162,6 +229,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
229
|
hrp: string;
|
|
163
230
|
vm: string;
|
|
164
231
|
txFee: string;
|
|
232
|
+
maxImportFee: string;
|
|
165
233
|
createSubnetTx: string;
|
|
166
234
|
createChainTx: string;
|
|
167
235
|
creationTxFee: string;
|
|
@@ -180,6 +248,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
248
|
explorerUrl: string;
|
|
181
249
|
accountExplorerUrl: string;
|
|
182
250
|
chainId: number;
|
|
251
|
+
nativeCoinOperationHashPrefix: string;
|
|
252
|
+
tokenOperationHashPrefix: string;
|
|
253
|
+
batcherContractAddress: string;
|
|
183
254
|
}
|
|
184
255
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
256
|
name: string;
|
|
@@ -187,6 +258,23 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
258
|
explorerUrl: string;
|
|
188
259
|
accountExplorerUrl: string;
|
|
189
260
|
chainId: number;
|
|
261
|
+
nativeCoinOperationHashPrefix: string;
|
|
262
|
+
tokenOperationHashPrefix: string;
|
|
263
|
+
batcherContractAddress: string;
|
|
264
|
+
}
|
|
265
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
266
|
+
name: string;
|
|
267
|
+
family: CoinFamily;
|
|
268
|
+
utxolibName: string;
|
|
269
|
+
explorerUrl: string;
|
|
270
|
+
lightningServicePubKey: string;
|
|
271
|
+
}
|
|
272
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
273
|
+
name: string;
|
|
274
|
+
family: CoinFamily;
|
|
275
|
+
utxolibName: string;
|
|
276
|
+
explorerUrl: string;
|
|
277
|
+
lightningServicePubKey: string;
|
|
190
278
|
}
|
|
191
279
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
280
|
name: string;
|
|
@@ -200,6 +288,24 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
200
288
|
utxolibName: string;
|
|
201
289
|
explorerUrl: string;
|
|
202
290
|
}
|
|
291
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
292
|
+
name: string;
|
|
293
|
+
family: CoinFamily;
|
|
294
|
+
utxolibName: string;
|
|
295
|
+
explorerUrl: string;
|
|
296
|
+
}
|
|
297
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
298
|
+
name: string;
|
|
299
|
+
family: CoinFamily;
|
|
300
|
+
utxolibName: string;
|
|
301
|
+
explorerUrl: string;
|
|
302
|
+
}
|
|
303
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
304
|
+
name: string;
|
|
305
|
+
family: CoinFamily;
|
|
306
|
+
utxolibName: string;
|
|
307
|
+
explorerUrl: string;
|
|
308
|
+
}
|
|
203
309
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
310
|
name: string;
|
|
205
311
|
family: CoinFamily;
|
|
@@ -280,7 +386,6 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
280
386
|
genesisHash: string;
|
|
281
387
|
specVersion: number;
|
|
282
388
|
chainName: string;
|
|
283
|
-
metadataRpc: `0x${string}`;
|
|
284
389
|
txVersion: number;
|
|
285
390
|
}
|
|
286
391
|
declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
@@ -291,7 +396,6 @@ declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
|
291
396
|
genesisHash: string;
|
|
292
397
|
specVersion: number;
|
|
293
398
|
chainName: string;
|
|
294
|
-
metadataRpc: `0x${string}`;
|
|
295
399
|
txVersion: number;
|
|
296
400
|
}
|
|
297
401
|
declare class Celo extends Mainnet implements EthereumNetwork {
|
|
@@ -300,6 +404,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
300
404
|
explorerUrl: string;
|
|
301
405
|
accountExplorerUrl: string;
|
|
302
406
|
chainId: number;
|
|
407
|
+
nativeCoinOperationHashPrefix: string;
|
|
408
|
+
tokenOperationHashPrefix: string;
|
|
303
409
|
}
|
|
304
410
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
305
411
|
name: string;
|
|
@@ -307,6 +413,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
307
413
|
explorerUrl: string;
|
|
308
414
|
accountExplorerUrl: string;
|
|
309
415
|
chainId: number;
|
|
416
|
+
nativeCoinOperationHashPrefix: string;
|
|
417
|
+
tokenOperationHashPrefix: string;
|
|
310
418
|
}
|
|
311
419
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
312
420
|
name: string;
|
|
@@ -325,10 +433,13 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
325
433
|
family: CoinFamily;
|
|
326
434
|
explorerUrl: string;
|
|
327
435
|
accountExplorerUrl: string;
|
|
436
|
+
blockExplorerUrl: string;
|
|
328
437
|
chainId: number;
|
|
329
438
|
batcherContractAddress: string;
|
|
330
439
|
forwarderFactoryAddress: string;
|
|
331
440
|
forwarderImplementationAddress: string;
|
|
441
|
+
nativeCoinOperationHashPrefix: string;
|
|
442
|
+
tokenOperationHashPrefix: string;
|
|
332
443
|
}
|
|
333
444
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
334
445
|
name: string;
|
|
@@ -345,6 +456,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
345
456
|
batcherContractAddress: string;
|
|
346
457
|
forwarderFactoryAddress: string;
|
|
347
458
|
forwarderImplementationAddress: string;
|
|
459
|
+
nativeCoinOperationHashPrefix: string;
|
|
460
|
+
tokenOperationHashPrefix: string;
|
|
348
461
|
}
|
|
349
462
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
350
463
|
name: string;
|
|
@@ -361,16 +474,34 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
361
474
|
batcherContractAddress: string;
|
|
362
475
|
forwarderFactoryAddress: string;
|
|
363
476
|
forwarderImplementationAddress: string;
|
|
477
|
+
nativeCoinOperationHashPrefix: string;
|
|
478
|
+
tokenOperationHashPrefix: string;
|
|
364
479
|
}
|
|
365
480
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
366
481
|
name: string;
|
|
367
482
|
family: CoinFamily;
|
|
368
483
|
explorerUrl: string;
|
|
369
484
|
accountExplorerUrl: string;
|
|
485
|
+
blockExplorerUrl: string;
|
|
370
486
|
chainId: number;
|
|
371
487
|
batcherContractAddress: string;
|
|
372
488
|
forwarderFactoryAddress: string;
|
|
373
489
|
forwarderImplementationAddress: string;
|
|
490
|
+
nativeCoinOperationHashPrefix: string;
|
|
491
|
+
tokenOperationHashPrefix: string;
|
|
492
|
+
}
|
|
493
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
494
|
+
name: string;
|
|
495
|
+
family: CoinFamily;
|
|
496
|
+
explorerUrl: string;
|
|
497
|
+
accountExplorerUrl: string;
|
|
498
|
+
blockExplorerUrl: string;
|
|
499
|
+
chainId: number;
|
|
500
|
+
batcherContractAddress: string;
|
|
501
|
+
forwarderFactoryAddress: string;
|
|
502
|
+
forwarderImplementationAddress: string;
|
|
503
|
+
nativeCoinOperationHashPrefix: string;
|
|
504
|
+
tokenOperationHashPrefix: string;
|
|
374
505
|
}
|
|
375
506
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
507
|
name: string;
|
|
@@ -378,6 +509,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
509
|
explorerUrl: string;
|
|
379
510
|
accountExplorerUrl: string;
|
|
380
511
|
chainId: number;
|
|
512
|
+
nativeCoinOperationHashPrefix: string;
|
|
513
|
+
tokenOperationHashPrefix: string;
|
|
381
514
|
}
|
|
382
515
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
516
|
name: string;
|
|
@@ -385,6 +518,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
518
|
explorerUrl: string;
|
|
386
519
|
accountExplorerUrl: string;
|
|
387
520
|
chainId: number;
|
|
521
|
+
nativeCoinOperationHashPrefix: string;
|
|
522
|
+
tokenOperationHashPrefix: string;
|
|
388
523
|
}
|
|
389
524
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
525
|
name: string;
|
|
@@ -434,6 +569,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
569
|
explorerUrl: string;
|
|
435
570
|
accountExplorerUrl: string;
|
|
436
571
|
chainId: number;
|
|
572
|
+
nativeCoinOperationHashPrefix: string;
|
|
573
|
+
tokenOperationHashPrefix: string;
|
|
437
574
|
}
|
|
438
575
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
576
|
name: string;
|
|
@@ -441,6 +578,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
578
|
explorerUrl: string;
|
|
442
579
|
accountExplorerUrl: string;
|
|
443
580
|
chainId: number;
|
|
581
|
+
nativeCoinOperationHashPrefix: string;
|
|
582
|
+
tokenOperationHashPrefix: string;
|
|
444
583
|
}
|
|
445
584
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
585
|
name: string;
|
|
@@ -482,6 +621,146 @@ declare class AtomTestnet extends Testnet implements AccountNetwork {
|
|
|
482
621
|
family: CoinFamily;
|
|
483
622
|
explorerUrl: string;
|
|
484
623
|
}
|
|
624
|
+
declare class Osmo extends Mainnet implements AccountNetwork {
|
|
625
|
+
name: string;
|
|
626
|
+
family: CoinFamily;
|
|
627
|
+
explorerUrl: string;
|
|
628
|
+
}
|
|
629
|
+
declare class OsmoTestnet extends Testnet implements AccountNetwork {
|
|
630
|
+
name: string;
|
|
631
|
+
family: CoinFamily;
|
|
632
|
+
explorerUrl: string;
|
|
633
|
+
}
|
|
634
|
+
declare class Tia extends Mainnet implements AccountNetwork {
|
|
635
|
+
name: string;
|
|
636
|
+
family: CoinFamily;
|
|
637
|
+
explorerUrl: string;
|
|
638
|
+
}
|
|
639
|
+
declare class TiaTestnet extends Testnet implements AccountNetwork {
|
|
640
|
+
name: string;
|
|
641
|
+
family: CoinFamily;
|
|
642
|
+
explorerUrl: string;
|
|
643
|
+
}
|
|
644
|
+
declare class Hash extends Mainnet implements AccountNetwork {
|
|
645
|
+
name: string;
|
|
646
|
+
family: CoinFamily;
|
|
647
|
+
explorerUrl: string;
|
|
648
|
+
}
|
|
649
|
+
declare class HashTestnet extends Testnet implements AccountNetwork {
|
|
650
|
+
name: string;
|
|
651
|
+
family: CoinFamily;
|
|
652
|
+
explorerUrl: string;
|
|
653
|
+
}
|
|
654
|
+
declare class Bld extends Mainnet implements AccountNetwork {
|
|
655
|
+
name: string;
|
|
656
|
+
family: CoinFamily;
|
|
657
|
+
explorerUrl: string;
|
|
658
|
+
}
|
|
659
|
+
declare class BldTestnet extends Testnet implements AccountNetwork {
|
|
660
|
+
name: string;
|
|
661
|
+
family: CoinFamily;
|
|
662
|
+
explorerUrl: string;
|
|
663
|
+
}
|
|
664
|
+
declare class Sei extends Mainnet implements AccountNetwork {
|
|
665
|
+
name: string;
|
|
666
|
+
family: CoinFamily;
|
|
667
|
+
explorerUrl: string;
|
|
668
|
+
}
|
|
669
|
+
declare class SeiTestnet extends Testnet implements AccountNetwork {
|
|
670
|
+
name: string;
|
|
671
|
+
family: CoinFamily;
|
|
672
|
+
explorerUrl: string;
|
|
673
|
+
}
|
|
674
|
+
declare class Zeta extends Mainnet implements AccountNetwork {
|
|
675
|
+
name: string;
|
|
676
|
+
family: CoinFamily;
|
|
677
|
+
explorerUrl: string;
|
|
678
|
+
}
|
|
679
|
+
declare class ZetaTestnet extends Testnet implements AccountNetwork {
|
|
680
|
+
name: string;
|
|
681
|
+
family: CoinFamily;
|
|
682
|
+
explorerUrl: string;
|
|
683
|
+
}
|
|
684
|
+
declare class Injective extends Mainnet implements AccountNetwork {
|
|
685
|
+
name: string;
|
|
686
|
+
family: CoinFamily;
|
|
687
|
+
explorerUrl: string;
|
|
688
|
+
}
|
|
689
|
+
declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
690
|
+
name: string;
|
|
691
|
+
family: CoinFamily;
|
|
692
|
+
explorerUrl: string;
|
|
693
|
+
}
|
|
694
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
695
|
+
name: string;
|
|
696
|
+
family: CoinFamily;
|
|
697
|
+
explorerUrl: string;
|
|
698
|
+
}
|
|
699
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
700
|
+
name: string;
|
|
701
|
+
family: CoinFamily;
|
|
702
|
+
explorerUrl: string;
|
|
703
|
+
}
|
|
704
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
705
|
+
name: string;
|
|
706
|
+
family: CoinFamily;
|
|
707
|
+
explorerUrl: string;
|
|
708
|
+
}
|
|
709
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
710
|
+
name: string;
|
|
711
|
+
family: CoinFamily;
|
|
712
|
+
explorerUrl: string;
|
|
713
|
+
}
|
|
714
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
715
|
+
name: string;
|
|
716
|
+
family: CoinFamily;
|
|
717
|
+
explorerUrl: string;
|
|
718
|
+
}
|
|
719
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
720
|
+
name: string;
|
|
721
|
+
family: CoinFamily;
|
|
722
|
+
explorerUrl: string;
|
|
723
|
+
}
|
|
724
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
725
|
+
name: string;
|
|
726
|
+
family: CoinFamily;
|
|
727
|
+
explorerUrl: string;
|
|
728
|
+
}
|
|
729
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
730
|
+
name: string;
|
|
731
|
+
family: CoinFamily;
|
|
732
|
+
explorerUrl: string;
|
|
733
|
+
}
|
|
734
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
735
|
+
name: string;
|
|
736
|
+
family: CoinFamily;
|
|
737
|
+
explorerUrl: string;
|
|
738
|
+
}
|
|
739
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
740
|
+
name: string;
|
|
741
|
+
family: CoinFamily;
|
|
742
|
+
explorerUrl: string;
|
|
743
|
+
}
|
|
744
|
+
declare class Mantra extends Mainnet implements AccountNetwork {
|
|
745
|
+
name: string;
|
|
746
|
+
family: CoinFamily;
|
|
747
|
+
explorerUrl: string;
|
|
748
|
+
}
|
|
749
|
+
declare class MantraTestnet extends Testnet implements AccountNetwork {
|
|
750
|
+
name: string;
|
|
751
|
+
family: CoinFamily;
|
|
752
|
+
explorerUrl: string;
|
|
753
|
+
}
|
|
754
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
755
|
+
name: string;
|
|
756
|
+
family: CoinFamily;
|
|
757
|
+
explorerUrl: string;
|
|
758
|
+
}
|
|
759
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
760
|
+
name: string;
|
|
761
|
+
family: CoinFamily;
|
|
762
|
+
explorerUrl: string;
|
|
763
|
+
}
|
|
485
764
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
486
765
|
name: string;
|
|
487
766
|
family: CoinFamily;
|
|
@@ -516,9 +795,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
516
795
|
family: CoinFamily;
|
|
517
796
|
explorerUrl: undefined;
|
|
518
797
|
}
|
|
798
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
799
|
+
name: string;
|
|
800
|
+
family: CoinFamily;
|
|
801
|
+
explorerUrl: string;
|
|
802
|
+
}
|
|
803
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
804
|
+
name: string;
|
|
805
|
+
family: CoinFamily;
|
|
806
|
+
explorerUrl: string;
|
|
807
|
+
specName: BittensorSpecNameType;
|
|
808
|
+
genesisHash: string;
|
|
809
|
+
specVersion: number;
|
|
810
|
+
chainName: string;
|
|
811
|
+
txVersion: number;
|
|
812
|
+
}
|
|
519
813
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
520
814
|
name: string;
|
|
521
815
|
family: CoinFamily;
|
|
816
|
+
accountExplorerUrl: string;
|
|
522
817
|
explorerUrl: string;
|
|
523
818
|
maxFeeLimit: string;
|
|
524
819
|
contractCallFeeLimit: string;
|
|
@@ -526,6 +821,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
526
821
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
527
822
|
name: string;
|
|
528
823
|
family: CoinFamily;
|
|
824
|
+
accountExplorerUrl: string;
|
|
529
825
|
explorerUrl: string;
|
|
530
826
|
maxFeeLimit: string;
|
|
531
827
|
contractCallFeeLimit: string;
|
|
@@ -588,6 +884,9 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
588
884
|
forwarderImplementationAddress: string;
|
|
589
885
|
walletFactoryAddress: string;
|
|
590
886
|
walletImplementationAddress: string;
|
|
887
|
+
batcherContractAddress: string;
|
|
888
|
+
nativeCoinOperationHashPrefix: string;
|
|
889
|
+
tokenOperationHashPrefix: string;
|
|
591
890
|
}
|
|
592
891
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
593
892
|
name: string;
|
|
@@ -599,21 +898,273 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
599
898
|
forwarderImplementationAddress: string;
|
|
600
899
|
walletFactoryAddress: string;
|
|
601
900
|
walletImplementationAddress: string;
|
|
901
|
+
batcherContractAddress: string;
|
|
902
|
+
nativeCoinOperationHashPrefix: string;
|
|
903
|
+
tokenOperationHashPrefix: string;
|
|
904
|
+
}
|
|
905
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
906
|
+
name: string;
|
|
907
|
+
family: CoinFamily;
|
|
908
|
+
explorerUrl: string;
|
|
909
|
+
accountExplorerUrl: string;
|
|
910
|
+
chainId: number;
|
|
911
|
+
nativeCoinOperationHashPrefix: string;
|
|
912
|
+
tokenOperationHashPrefix: string;
|
|
913
|
+
forwarderFactoryAddress: string;
|
|
914
|
+
forwarderImplementationAddress: string;
|
|
915
|
+
walletFactoryAddress: string;
|
|
916
|
+
walletImplementationAddress: string;
|
|
917
|
+
}
|
|
918
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
919
|
+
name: string;
|
|
920
|
+
family: CoinFamily;
|
|
921
|
+
explorerUrl: string;
|
|
922
|
+
accountExplorerUrl: string;
|
|
923
|
+
chainId: number;
|
|
924
|
+
nativeCoinOperationHashPrefix: string;
|
|
925
|
+
tokenOperationHashPrefix: string;
|
|
926
|
+
forwarderFactoryAddress: string;
|
|
927
|
+
forwarderImplementationAddress: string;
|
|
928
|
+
walletFactoryAddress: string;
|
|
929
|
+
walletImplementationAddress: string;
|
|
930
|
+
batcherContractAddress: string;
|
|
931
|
+
}
|
|
932
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
933
|
+
name: string;
|
|
934
|
+
family: CoinFamily;
|
|
935
|
+
explorerUrl: string;
|
|
936
|
+
accountExplorerUrl: string;
|
|
937
|
+
chainId: number;
|
|
938
|
+
nativeCoinOperationHashPrefix: string;
|
|
939
|
+
tokenOperationHashPrefix: string;
|
|
940
|
+
}
|
|
941
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
942
|
+
name: string;
|
|
943
|
+
family: CoinFamily;
|
|
944
|
+
explorerUrl: string;
|
|
945
|
+
accountExplorerUrl: string;
|
|
946
|
+
chainId: number;
|
|
947
|
+
nativeCoinOperationHashPrefix: string;
|
|
948
|
+
tokenOperationHashPrefix: string;
|
|
949
|
+
forwarderFactoryAddress: string;
|
|
950
|
+
forwarderImplementationAddress: string;
|
|
951
|
+
walletFactoryAddress: string;
|
|
952
|
+
walletImplementationAddress: string;
|
|
953
|
+
}
|
|
954
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
955
|
+
name: string;
|
|
956
|
+
family: CoinFamily;
|
|
957
|
+
explorerUrl: string;
|
|
958
|
+
accountExplorerUrl: string;
|
|
959
|
+
chainId: number;
|
|
960
|
+
nativeCoinOperationHashPrefix: string;
|
|
961
|
+
tokenOperationHashPrefix: string;
|
|
962
|
+
batcherContractAddress: string;
|
|
963
|
+
forwarderFactoryAddress: string;
|
|
964
|
+
forwarderImplementationAddress: string;
|
|
965
|
+
}
|
|
966
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
967
|
+
name: string;
|
|
968
|
+
family: CoinFamily;
|
|
969
|
+
explorerUrl: string;
|
|
970
|
+
accountExplorerUrl: string;
|
|
971
|
+
chainId: number;
|
|
972
|
+
nativeCoinOperationHashPrefix: string;
|
|
973
|
+
tokenOperationHashPrefix: string;
|
|
974
|
+
batcherContractAddress: string;
|
|
975
|
+
forwarderFactoryAddress: string;
|
|
976
|
+
forwarderImplementationAddress: string;
|
|
977
|
+
}
|
|
978
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
979
|
+
name: string;
|
|
980
|
+
family: CoinFamily;
|
|
981
|
+
explorerUrl: string;
|
|
982
|
+
accountExplorerUrl: string;
|
|
983
|
+
chainId: number;
|
|
984
|
+
nativeCoinOperationHashPrefix: string;
|
|
985
|
+
batcherContractAddress: string;
|
|
986
|
+
forwarderFactoryAddress: string;
|
|
987
|
+
forwarderImplementationAddress: string;
|
|
988
|
+
}
|
|
989
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
990
|
+
name: string;
|
|
991
|
+
family: CoinFamily;
|
|
992
|
+
explorerUrl: string;
|
|
993
|
+
accountExplorerUrl: string;
|
|
994
|
+
chainId: number;
|
|
995
|
+
nativeCoinOperationHashPrefix: string;
|
|
996
|
+
batcherContractAddress: string;
|
|
997
|
+
forwarderFactoryAddress: string;
|
|
998
|
+
forwarderImplementationAddress: string;
|
|
999
|
+
}
|
|
1000
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1001
|
+
name: string;
|
|
1002
|
+
family: CoinFamily;
|
|
1003
|
+
explorerUrl: string;
|
|
1004
|
+
accountExplorerUrl: string;
|
|
1005
|
+
chainId: number;
|
|
1006
|
+
nativeCoinOperationHashPrefix: string;
|
|
1007
|
+
batcherContractAddress: string;
|
|
1008
|
+
forwarderFactoryAddress: string;
|
|
1009
|
+
forwarderImplementationAddress: string;
|
|
1010
|
+
}
|
|
1011
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1012
|
+
name: string;
|
|
1013
|
+
family: CoinFamily;
|
|
1014
|
+
explorerUrl: string;
|
|
1015
|
+
accountExplorerUrl: string;
|
|
1016
|
+
chainId: number;
|
|
1017
|
+
nativeCoinOperationHashPrefix: string;
|
|
1018
|
+
batcherContractAddress: string;
|
|
1019
|
+
forwarderFactoryAddress: string;
|
|
1020
|
+
forwarderImplementationAddress: string;
|
|
1021
|
+
}
|
|
1022
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1023
|
+
name: string;
|
|
1024
|
+
family: CoinFamily;
|
|
1025
|
+
explorerUrl: string;
|
|
1026
|
+
accountExplorerUrl: string;
|
|
1027
|
+
chainId: number;
|
|
1028
|
+
nativeCoinOperationHashPrefix: string;
|
|
1029
|
+
batcherContractAddress: string;
|
|
1030
|
+
forwarderFactoryAddress: string;
|
|
1031
|
+
forwarderImplementationAddress: string;
|
|
1032
|
+
}
|
|
1033
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1034
|
+
name: string;
|
|
1035
|
+
family: CoinFamily;
|
|
1036
|
+
explorerUrl: string;
|
|
1037
|
+
accountExplorerUrl: string;
|
|
1038
|
+
chainId: number;
|
|
1039
|
+
nativeCoinOperationHashPrefix: string;
|
|
1040
|
+
batcherContractAddress: string;
|
|
1041
|
+
forwarderFactoryAddress: string;
|
|
1042
|
+
forwarderImplementationAddress: string;
|
|
1043
|
+
}
|
|
1044
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1045
|
+
name: string;
|
|
1046
|
+
family: CoinFamily;
|
|
1047
|
+
explorerUrl: string;
|
|
1048
|
+
accountExplorerUrl: string;
|
|
1049
|
+
chainId: number;
|
|
1050
|
+
nativeCoinOperationHashPrefix: string;
|
|
1051
|
+
batcherContractAddress: string;
|
|
1052
|
+
forwarderFactoryAddress: string;
|
|
1053
|
+
forwarderImplementationAddress: string;
|
|
1054
|
+
}
|
|
1055
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1056
|
+
name: string;
|
|
1057
|
+
family: CoinFamily;
|
|
1058
|
+
explorerUrl: string;
|
|
1059
|
+
accountExplorerUrl: string;
|
|
1060
|
+
chainId: number;
|
|
1061
|
+
nativeCoinOperationHashPrefix: string;
|
|
1062
|
+
batcherContractAddress: string;
|
|
1063
|
+
forwarderFactoryAddress: string;
|
|
1064
|
+
forwarderImplementationAddress: string;
|
|
1065
|
+
}
|
|
1066
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1067
|
+
name: string;
|
|
1068
|
+
family: CoinFamily;
|
|
1069
|
+
explorerUrl: string;
|
|
1070
|
+
accountExplorerUrl: string;
|
|
1071
|
+
chainId: number;
|
|
1072
|
+
nativeCoinOperationHashPrefix: string;
|
|
1073
|
+
batcherContractAddress: string;
|
|
1074
|
+
forwarderFactoryAddress: string;
|
|
1075
|
+
forwarderImplementationAddress: string;
|
|
1076
|
+
}
|
|
1077
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1078
|
+
name: string;
|
|
1079
|
+
family: CoinFamily;
|
|
1080
|
+
explorerUrl: string;
|
|
1081
|
+
accountExplorerUrl: string;
|
|
1082
|
+
chainId: number;
|
|
1083
|
+
nativeCoinOperationHashPrefix: string;
|
|
1084
|
+
batcherContractAddress: string;
|
|
1085
|
+
forwarderFactoryAddress: string;
|
|
1086
|
+
forwarderImplementationAddress: string;
|
|
1087
|
+
}
|
|
1088
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1089
|
+
name: string;
|
|
1090
|
+
family: CoinFamily;
|
|
1091
|
+
explorerUrl: string;
|
|
1092
|
+
accountExplorerUrl: string;
|
|
1093
|
+
chainId: number;
|
|
1094
|
+
nativeCoinOperationHashPrefix: string;
|
|
1095
|
+
batcherContractAddress: string;
|
|
1096
|
+
forwarderFactoryAddress: string;
|
|
1097
|
+
forwarderImplementationAddress: string;
|
|
1098
|
+
}
|
|
1099
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1100
|
+
name: string;
|
|
1101
|
+
family: CoinFamily;
|
|
1102
|
+
explorerUrl: string;
|
|
1103
|
+
accountExplorerUrl: string;
|
|
1104
|
+
chainId: number;
|
|
1105
|
+
nativeCoinOperationHashPrefix: string;
|
|
1106
|
+
batcherContractAddress: string;
|
|
1107
|
+
forwarderFactoryAddress: string;
|
|
1108
|
+
forwarderImplementationAddress: string;
|
|
1109
|
+
}
|
|
1110
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1111
|
+
name: string;
|
|
1112
|
+
family: CoinFamily;
|
|
1113
|
+
explorerUrl: string;
|
|
1114
|
+
accountExplorerUrl: string;
|
|
1115
|
+
chainId: number;
|
|
1116
|
+
nativeCoinOperationHashPrefix: string;
|
|
1117
|
+
tokenOperationHashPrefix: string;
|
|
1118
|
+
forwarderFactoryAddress: string;
|
|
1119
|
+
forwarderImplementationAddress: string;
|
|
1120
|
+
walletFactoryAddress: string;
|
|
1121
|
+
walletImplementationAddress: string;
|
|
1122
|
+
}
|
|
1123
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1124
|
+
name: string;
|
|
1125
|
+
family: CoinFamily;
|
|
1126
|
+
explorerUrl: string;
|
|
1127
|
+
accountExplorerUrl: string;
|
|
1128
|
+
chainId: number;
|
|
1129
|
+
nativeCoinOperationHashPrefix: string;
|
|
1130
|
+
tokenOperationHashPrefix: string;
|
|
1131
|
+
forwarderFactoryAddress: string;
|
|
1132
|
+
forwarderImplementationAddress: string;
|
|
1133
|
+
walletFactoryAddress: string;
|
|
1134
|
+
walletImplementationAddress: string;
|
|
1135
|
+
}
|
|
1136
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1137
|
+
name: string;
|
|
1138
|
+
family: CoinFamily;
|
|
1139
|
+
explorerUrl: string;
|
|
1140
|
+
}
|
|
1141
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1142
|
+
name: string;
|
|
1143
|
+
family: CoinFamily;
|
|
1144
|
+
explorerUrl: string;
|
|
602
1145
|
}
|
|
603
1146
|
export declare const Networks: {
|
|
604
1147
|
main: {
|
|
605
1148
|
ada: Readonly<Ada>;
|
|
606
1149
|
algorand: Readonly<Algorand>;
|
|
1150
|
+
apt: Readonly<Apt>;
|
|
1151
|
+
arbitrum: Readonly<Arbitrum>;
|
|
607
1152
|
atom: Readonly<Atom>;
|
|
608
1153
|
avalancheC: Readonly<AvalancheC>;
|
|
609
1154
|
avalancheP: Readonly<AvalancheP>;
|
|
1155
|
+
baby: Readonly<Baby>;
|
|
1156
|
+
basechain: Readonly<BaseChain>;
|
|
610
1157
|
bitcoin: Readonly<Bitcoin>;
|
|
611
1158
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
612
1159
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
613
1160
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1161
|
+
bera: Readonly<Berachain>;
|
|
1162
|
+
bld: Readonly<Bld>;
|
|
614
1163
|
bsc: Readonly<BinanceSmartChain>;
|
|
615
1164
|
casper: Readonly<Casper>;
|
|
616
1165
|
celo: Readonly<Celo>;
|
|
1166
|
+
coredao: Readonly<Coredao>;
|
|
1167
|
+
coreum: Readonly<Coreum>;
|
|
617
1168
|
dash: Readonly<Dash>;
|
|
618
1169
|
dogecoin: Readonly<Dogecoin>;
|
|
619
1170
|
dot: Readonly<Polkadot>;
|
|
@@ -624,34 +1175,66 @@ export declare const Networks: {
|
|
|
624
1175
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
625
1176
|
ethereumW: Readonly<EthereumW>;
|
|
626
1177
|
fiat: Readonly<Fiat>;
|
|
1178
|
+
flr: Readonly<Flare>;
|
|
1179
|
+
hash: Readonly<Hash>;
|
|
627
1180
|
hedera: Readonly<Hedera>;
|
|
1181
|
+
icp: Readonly<Icp>;
|
|
1182
|
+
injective: Readonly<Injective>;
|
|
1183
|
+
islm: Readonly<Islm>;
|
|
1184
|
+
kava: Readonly<Kava>;
|
|
1185
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
628
1186
|
litecoin: Readonly<Litecoin>;
|
|
1187
|
+
mantra: Readonly<Mantra>;
|
|
629
1188
|
polygon: Readonly<Polygon>;
|
|
1189
|
+
polyx: Readonly<Polymesh>;
|
|
1190
|
+
oas: Readonly<Oas>;
|
|
630
1191
|
ofc: Readonly<Ofc>;
|
|
1192
|
+
optimism: Readonly<Optimism>;
|
|
1193
|
+
osmo: Readonly<Osmo>;
|
|
631
1194
|
rbtc: Readonly<Rbtc>;
|
|
1195
|
+
rune: Readonly<Rune>;
|
|
632
1196
|
stellar: Readonly<Stellar>;
|
|
1197
|
+
sei: Readonly<Sei>;
|
|
1198
|
+
sgb: Readonly<Songbird>;
|
|
633
1199
|
sol: Readonly<Sol>;
|
|
634
1200
|
sui: Readonly<Sui>;
|
|
635
1201
|
near: Readonly<Near>;
|
|
636
1202
|
stx: Readonly<Stx>;
|
|
637
1203
|
susd: Readonly<SUSD>;
|
|
1204
|
+
tao: Readonly<Bittensor>;
|
|
1205
|
+
tia: Readonly<Tia>;
|
|
1206
|
+
ton: Readonly<Ton>;
|
|
638
1207
|
trx: Readonly<Trx>;
|
|
1208
|
+
wemix: Readonly<Wemix>;
|
|
1209
|
+
xdc: Readonly<Xdc>;
|
|
639
1210
|
xrp: Readonly<Xrp>;
|
|
640
1211
|
xtz: Readonly<Xtz>;
|
|
641
1212
|
zCash: Readonly<ZCash>;
|
|
1213
|
+
zeta: Readonly<Zeta>;
|
|
1214
|
+
zkSync: Readonly<ZkSync>;
|
|
642
1215
|
};
|
|
643
1216
|
test: {
|
|
644
1217
|
ada: Readonly<AdaTestnet>;
|
|
645
1218
|
algorand: Readonly<AlgorandTestnet>;
|
|
1219
|
+
apt: Readonly<AptTestnet>;
|
|
1220
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
646
1221
|
atom: Readonly<AtomTestnet>;
|
|
647
1222
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
648
1223
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1224
|
+
baby: Readonly<BabyTestnet>;
|
|
1225
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
649
1226
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1227
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1228
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1229
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
650
1230
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
651
1231
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
652
1232
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1233
|
+
bera: Readonly<BerachainTestnet>;
|
|
1234
|
+
bld: Readonly<BldTestnet>;
|
|
653
1235
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
654
1236
|
casper: Readonly<CasperTestnet>;
|
|
1237
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
655
1238
|
celo: Readonly<CeloTestnet>;
|
|
656
1239
|
dash: Readonly<DashTestnet>;
|
|
657
1240
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
@@ -659,25 +1242,49 @@ export declare const Networks: {
|
|
|
659
1242
|
eCash: Readonly<ECashTestnet>;
|
|
660
1243
|
eos: Readonly<EosTestnet>;
|
|
661
1244
|
fiat: Readonly<FiatTestnet>;
|
|
1245
|
+
flr: Readonly<FlareTestnet>;
|
|
662
1246
|
pyrmont: Readonly<Pyrmont>;
|
|
663
1247
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
1248
|
+
hash: Readonly<HashTestnet>;
|
|
664
1249
|
hedera: Readonly<HederaTestnet>;
|
|
1250
|
+
icp: Readonly<IcpTestnet>;
|
|
1251
|
+
injective: Readonly<InjectiveTestnet>;
|
|
1252
|
+
islm: Readonly<IslmTestnet>;
|
|
1253
|
+
kava: Readonly<KavaTestnet>;
|
|
665
1254
|
kovan: Readonly<Kovan>;
|
|
666
1255
|
goerli: Readonly<Goerli>;
|
|
1256
|
+
holesky: Readonly<Holesky>;
|
|
1257
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
667
1258
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1259
|
+
mantra: Readonly<MantraTestnet>;
|
|
668
1260
|
polygon: Readonly<PolygonTestnet>;
|
|
1261
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1262
|
+
oas: Readonly<OasTestnet>;
|
|
669
1263
|
ofc: Readonly<OfcTestnet>;
|
|
1264
|
+
optimism: Readonly<OptimismTestnet>;
|
|
1265
|
+
osmo: Readonly<OsmoTestnet>;
|
|
670
1266
|
rbtc: Readonly<RbtcTestnet>;
|
|
1267
|
+
rune: Readonly<RuneTestNet>;
|
|
1268
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
671
1269
|
stellar: Readonly<StellarTestnet>;
|
|
1270
|
+
sei: Readonly<SeiTestnet>;
|
|
672
1271
|
sol: Readonly<SolTestnet>;
|
|
673
1272
|
sui: Readonly<SuiTestnet>;
|
|
674
1273
|
near: Readonly<NearTestnet>;
|
|
675
1274
|
stx: Readonly<StxTestnet>;
|
|
676
1275
|
susd: Readonly<SUSDTestnet>;
|
|
1276
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1277
|
+
tao: Readonly<BittensorTestnet>;
|
|
1278
|
+
tia: Readonly<TiaTestnet>;
|
|
1279
|
+
ton: Readonly<TonTestnet>;
|
|
677
1280
|
trx: Readonly<TrxTestnet>;
|
|
1281
|
+
wemix: Readonly<WemixTestnet>;
|
|
1282
|
+
xdc: Readonly<XdcTestnet>;
|
|
678
1283
|
xrp: Readonly<XrpTestnet>;
|
|
679
1284
|
xtz: Readonly<XtzTestnet>;
|
|
680
1285
|
zCash: Readonly<ZCashTestnet>;
|
|
1286
|
+
zeta: Readonly<ZetaTestnet>;
|
|
1287
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
681
1288
|
};
|
|
682
1289
|
};
|
|
683
1290
|
export {};
|