@heliofi/common-fe 0.2.311 → 0.2.312-alpha.1787149116
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/dist/index.d.ts +1 -1
- package/dist/index.js +10 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -474,4 +474,4 @@ declare class SubmitWithdrawalDto {
|
|
|
474
474
|
signedTx: string;
|
|
475
475
|
}
|
|
476
476
|
//#endregion
|
|
477
|
-
export { type BaseBlockchain, type BaseCompany, BetaFeature, type Blockchain, type BlockchainEngine, BlockchainEngineType, BlockchainSymbol, BroadcastAck, DepositSweepErrorType, GeneralNetwork, type HypercorePreparedTransaction, Platform, type PolymarketWalletPreparedTransaction, type PreparedTransaction, type PreparedWithdrawalDto, type PreparedWithdrawalEntity, type PreparedWithdrawalSummaryDto, type PreparedWithdrawalTypedDataDto, type PublicWithdrawalConfigEntity, type RawPreparedTransaction, SignedTransactionKind, type SlimCurrencyWithBlockchain, type SlimCurrencyWithPopulatedBlockchain, type SubmitWithdrawalDto, type SubmitWithdrawalEntity, TextColor, type Theme, type ThemeDesignTokens, ThemeMode, type ThemePalette, ThemeType, type UserOpPreparedTransaction, type WalletCurrencyBalance, type WithdrawalBalancesResponse, type WithdrawalCurrenciesExchangeRate, type WithdrawalCustomerSwapRoute, type WithdrawalCustomerSwapRoutesResponse, WithdrawalFeature, type WithdrawalMinSupportedVersions, type WithdrawalQuoteFeeEntity, WithdrawalState };
|
|
477
|
+
export { type BaseBlockchain, type BaseCompany, BetaFeature, type Blockchain, type BlockchainEngine, BlockchainEngineType, BlockchainSymbol, BroadcastAck, DepositBlockchainSymbol, DepositSweepErrorType, GeneralNetwork, type HypercorePreparedTransaction, Platform, type PolymarketWalletPreparedTransaction, type PreparedTransaction, type PreparedWithdrawalDto, type PreparedWithdrawalEntity, type PreparedWithdrawalSummaryDto, type PreparedWithdrawalTypedDataDto, type PublicWithdrawalConfigEntity, type RawPreparedTransaction, SignedTransactionKind, type SlimCurrencyWithBlockchain, type SlimCurrencyWithPopulatedBlockchain, type SubmitWithdrawalDto, type SubmitWithdrawalEntity, TextColor, type Theme, type ThemeDesignTokens, ThemeMode, type ThemePalette, ThemeType, type UserOpPreparedTransaction, type WalletCurrencyBalance, type WithdrawalBalancesResponse, type WithdrawalCurrenciesExchangeRate, type WithdrawalCustomerSwapRoute, type WithdrawalCustomerSwapRoutesResponse, WithdrawalFeature, type WithdrawalMinSupportedVersions, type WithdrawalQuoteFeeEntity, WithdrawalState };
|
package/dist/index.js
CHANGED
|
@@ -12,6 +12,15 @@ let BlockchainSymbol = /* @__PURE__ */ function(BlockchainSymbol) {
|
|
|
12
12
|
BlockchainSymbol["TON"] = "TON";
|
|
13
13
|
return BlockchainSymbol;
|
|
14
14
|
}({});
|
|
15
|
+
let DepositBlockchainSymbol = /* @__PURE__ */ function(DepositBlockchainSymbol) {
|
|
16
|
+
DepositBlockchainSymbol["ABSTRACT"] = "ABSTRACT";
|
|
17
|
+
DepositBlockchainSymbol["HYPERLIQUID"] = "HYPERLIQUID";
|
|
18
|
+
DepositBlockchainSymbol["HYPERCORE"] = "HYPERCORE";
|
|
19
|
+
DepositBlockchainSymbol["PLASMA"] = "PLASMA";
|
|
20
|
+
DepositBlockchainSymbol["MEGAETH"] = "MEGAETH";
|
|
21
|
+
DepositBlockchainSymbol["SEISMIC"] = "SEISMIC";
|
|
22
|
+
return DepositBlockchainSymbol;
|
|
23
|
+
}({});
|
|
15
24
|
//#endregion
|
|
16
25
|
//#region ../common/src/domain/model/blockchainEngine/constants/BlockchainEngineType.ts
|
|
17
26
|
let BlockchainEngineType = /* @__PURE__ */ function(BlockchainEngineType) {
|
|
@@ -129,4 +138,4 @@ let DepositSweepErrorType = /* @__PURE__ */ function(DepositSweepErrorType) {
|
|
|
129
138
|
return DepositSweepErrorType;
|
|
130
139
|
}({});
|
|
131
140
|
//#endregion
|
|
132
|
-
export { BetaFeature, BlockchainEngineType, BlockchainSymbol, BroadcastAck, DepositSweepErrorType, GeneralNetwork, Platform, SignedTransactionKind, TextColor, ThemeMode, ThemeType, WithdrawalFeature, WithdrawalState };
|
|
141
|
+
export { BetaFeature, BlockchainEngineType, BlockchainSymbol, BroadcastAck, DepositBlockchainSymbol, DepositSweepErrorType, GeneralNetwork, Platform, SignedTransactionKind, TextColor, ThemeMode, ThemeType, WithdrawalFeature, WithdrawalState };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heliofi/common-fe",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.312-alpha.1787149116",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Zero-dependency, frontend-safe shared enums (and, later, DTO type shapes) for Helio consumers. No class-validator / reflect-metadata / heavy blockchain deps.",
|
|
6
6
|
"license": "ISC",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"typescript": "5.*"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "afa26a44de7ae31d144de03492f455e7e052c9ae"
|
|
33
33
|
}
|