@ecency/wallets 1.5.12 → 1.5.14
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/browser/index.d.ts +33 -24
- package/dist/browser/index.js +30 -2
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +30 -1
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +30 -2
- package/dist/node/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser/index.d.ts
CHANGED
|
@@ -72,19 +72,19 @@ declare function useWalletCreate(username: string, currency: EcencyWalletCurrenc
|
|
|
72
72
|
importWallet: () => void;
|
|
73
73
|
};
|
|
74
74
|
|
|
75
|
-
interface Payload$
|
|
75
|
+
interface Payload$9 {
|
|
76
76
|
currency: string;
|
|
77
77
|
address: string;
|
|
78
78
|
}
|
|
79
|
-
declare function useCreateAccountWithWallets(username: string): _tanstack_react_query.UseMutationResult<Response, Error, Payload$
|
|
79
|
+
declare function useCreateAccountWithWallets(username: string): _tanstack_react_query.UseMutationResult<Response, Error, Payload$9, unknown>;
|
|
80
80
|
|
|
81
|
-
interface Payload$
|
|
81
|
+
interface Payload$8 {
|
|
82
82
|
address: string;
|
|
83
83
|
currency: EcencyWalletCurrency;
|
|
84
84
|
}
|
|
85
|
-
declare function useCheckWalletExistence(): _tanstack_react_query.UseMutationResult<boolean, Error, Payload$
|
|
85
|
+
declare function useCheckWalletExistence(): _tanstack_react_query.UseMutationResult<boolean, Error, Payload$8, unknown>;
|
|
86
86
|
|
|
87
|
-
interface Payload$
|
|
87
|
+
interface Payload$7 {
|
|
88
88
|
tokens: Record<string, string>;
|
|
89
89
|
hiveKeys: {
|
|
90
90
|
ownerPublicKey: string;
|
|
@@ -93,7 +93,7 @@ interface Payload$6 {
|
|
|
93
93
|
memoPublicKey: string;
|
|
94
94
|
};
|
|
95
95
|
}
|
|
96
|
-
declare function useUpdateAccountWithWallets(username: string, accessToken: string | undefined): _tanstack_react_query.UseMutationResult<Response, Error, Payload$
|
|
96
|
+
declare function useUpdateAccountWithWallets(username: string, accessToken: string | undefined): _tanstack_react_query.UseMutationResult<Response, Error, Payload$7, unknown>;
|
|
97
97
|
|
|
98
98
|
declare const index_useCheckWalletExistence: typeof useCheckWalletExistence;
|
|
99
99
|
declare const index_useCreateAccountWithWallets: typeof useCreateAccountWithWallets;
|
|
@@ -102,7 +102,7 @@ declare namespace index {
|
|
|
102
102
|
export { index_useCheckWalletExistence as useCheckWalletExistence, index_useCreateAccountWithWallets as useCreateAccountWithWallets, index_useUpdateAccountWithWallets as useUpdateAccountWithWallets };
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
interface Payload$
|
|
105
|
+
interface Payload$6 {
|
|
106
106
|
privateKeyOrSeed: string;
|
|
107
107
|
}
|
|
108
108
|
/**
|
|
@@ -114,7 +114,7 @@ declare function useImportWallet(username: string, currency: EcencyWalletCurrenc
|
|
|
114
114
|
privateKey: string;
|
|
115
115
|
address: any;
|
|
116
116
|
publicKey: string;
|
|
117
|
-
}, Error, Payload$
|
|
117
|
+
}, Error, Payload$6, unknown>;
|
|
118
118
|
|
|
119
119
|
/**
|
|
120
120
|
* Saving of token(s) metadata to Hive profile
|
|
@@ -812,16 +812,16 @@ declare function transferHive<T extends HiveBasedAssetSignType>(payload: T exten
|
|
|
812
812
|
key: PrivateKey;
|
|
813
813
|
} : TransferPayload<T>, auth?: AuthContext): Promise<unknown>;
|
|
814
814
|
|
|
815
|
-
interface Payload$
|
|
815
|
+
interface Payload$5<T extends HiveBasedAssetSignType> {
|
|
816
816
|
from: string;
|
|
817
817
|
to: string;
|
|
818
818
|
amount: string;
|
|
819
819
|
memo: string;
|
|
820
820
|
type: T;
|
|
821
821
|
}
|
|
822
|
-
declare function transferToSavingsHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$
|
|
822
|
+
declare function transferToSavingsHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$5<T> & {
|
|
823
823
|
key: PrivateKey;
|
|
824
|
-
} : Payload$
|
|
824
|
+
} : Payload$5<T>, auth?: AuthContext): Promise<unknown>;
|
|
825
825
|
|
|
826
826
|
interface PayloadBase$1 {
|
|
827
827
|
from: string;
|
|
@@ -837,47 +837,47 @@ declare function transferFromSavingsHive<T extends HiveBasedAssetSignType>(paylo
|
|
|
837
837
|
key: PrivateKey;
|
|
838
838
|
} : PayloadWithKey$1<T>, auth?: AuthContext): Promise<unknown>;
|
|
839
839
|
|
|
840
|
-
interface Payload$
|
|
840
|
+
interface Payload$4<T extends HiveBasedAssetSignType> {
|
|
841
841
|
from: string;
|
|
842
842
|
to: string;
|
|
843
843
|
amount: string;
|
|
844
844
|
memo: string;
|
|
845
845
|
type: T;
|
|
846
846
|
}
|
|
847
|
-
declare function powerUpHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$
|
|
847
|
+
declare function powerUpHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$4<T> & {
|
|
848
848
|
key: PrivateKey;
|
|
849
|
-
} : Payload$
|
|
849
|
+
} : Payload$4<T>, auth?: AuthContext): Promise<unknown>;
|
|
850
850
|
|
|
851
|
-
interface Payload$
|
|
851
|
+
interface Payload$3<T extends HiveBasedAssetSignType> {
|
|
852
852
|
from: string;
|
|
853
853
|
to: string;
|
|
854
854
|
amount: string;
|
|
855
855
|
memo: string;
|
|
856
856
|
type: T;
|
|
857
857
|
}
|
|
858
|
-
declare function delegateHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$
|
|
858
|
+
declare function delegateHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$3<T> & {
|
|
859
859
|
key: PrivateKey;
|
|
860
|
-
} : Payload$
|
|
860
|
+
} : Payload$3<T>, auth?: AuthContext): Promise<unknown>;
|
|
861
861
|
|
|
862
|
-
interface Payload$
|
|
862
|
+
interface Payload$2<T extends HiveBasedAssetSignType> {
|
|
863
863
|
from: string;
|
|
864
864
|
amount: string;
|
|
865
865
|
type: T;
|
|
866
866
|
}
|
|
867
|
-
declare function powerDownHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$
|
|
867
|
+
declare function powerDownHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$2<T> & {
|
|
868
868
|
key: PrivateKey;
|
|
869
|
-
} : Payload$
|
|
869
|
+
} : Payload$2<T>, auth?: AuthContext): Promise<unknown>;
|
|
870
870
|
|
|
871
|
-
interface Payload<T extends HiveBasedAssetSignType> {
|
|
871
|
+
interface Payload$1<T extends HiveBasedAssetSignType> {
|
|
872
872
|
from_account: string;
|
|
873
873
|
to_account: string;
|
|
874
874
|
percent: number;
|
|
875
875
|
auto_vest: boolean;
|
|
876
876
|
type: T;
|
|
877
877
|
}
|
|
878
|
-
declare function withdrawVestingRouteHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload<T> & {
|
|
878
|
+
declare function withdrawVestingRouteHive<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload$1<T> & {
|
|
879
879
|
key: PrivateKey;
|
|
880
|
-
} : Payload<T>, auth?: AuthContext): Promise<unknown>;
|
|
880
|
+
} : Payload$1<T>, auth?: AuthContext): Promise<unknown>;
|
|
881
881
|
|
|
882
882
|
declare function useClaimRewards(username: string, auth: AuthContext | undefined, onSuccess: () => void): ReturnType<typeof useBroadcastMutation<void>>;
|
|
883
883
|
|
|
@@ -895,6 +895,15 @@ declare function claimInterestHive<T extends HiveBasedAssetSignType>(payload: T
|
|
|
895
895
|
key: PrivateKey;
|
|
896
896
|
} : PayloadWithKey<T>, auth?: AuthContext): Promise<unknown>;
|
|
897
897
|
|
|
898
|
+
interface Payload<T extends HiveBasedAssetSignType> {
|
|
899
|
+
from: string;
|
|
900
|
+
amount: string;
|
|
901
|
+
type: T;
|
|
902
|
+
}
|
|
903
|
+
declare function convertHbd<T extends HiveBasedAssetSignType>(payload: T extends "key" ? Payload<T> & {
|
|
904
|
+
key: PrivateKey;
|
|
905
|
+
} : Payload<T>, auth?: AuthContext): Promise<unknown>;
|
|
906
|
+
|
|
898
907
|
declare const HIVE_ACCOUNT_OPERATION_GROUPS: Record<HiveOperationGroup, number[]>;
|
|
899
908
|
|
|
900
909
|
declare const HIVE_OPERATION_LIST: HiveOperationName[];
|
|
@@ -2019,4 +2028,4 @@ declare function buildExternalTx(currency: EcencyWalletCurrency, tx: ExternalTxP
|
|
|
2019
2028
|
|
|
2020
2029
|
declare function getBoundFetch(): typeof fetch;
|
|
2021
2030
|
|
|
2022
|
-
export { type AccountPointsResponse, type Asset, AssetOperation, type AuthorReward, type CancelTransferFromSavings, type ClaimRewardBalance, type CollateralizedConvert, type CommentBenefactor, type CommentPayoutUpdate, type CommentReward, type CurationReward, type DelegateEnginePayload, type DelegateVestingShares, type DelegatedVestingShare, type EcencyHiveKeys, type EcencyTokenMetadata, EcencyWalletBasicTokens, EcencyWalletCurrency, index as EcencyWalletsPrivateApi, type EffectiveCommentVote, type EngineOrderBroadcastOptions, type EngineOrderSignMethod, type ExternalTxParams, type ExternalWalletBalance, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type GeneralAssetInfo, type GeneralAssetTransaction, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveAuthBroadcastHandler, type HiveAuthKeyType, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, type HiveEngineOpenOrder, type HiveEngineOrderBookEntry, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveKeyDerivation, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, type HiveRole, type HiveTransaction, type HiveWithdrawRoute, type Interest, type LimitOrderCancel, type LimitOrderCreate, NaiMap, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type ProducerReward, type ProposalPay, type ReceivedVestingShare, type RecurrentTransfers, type ReturnVestingDelegation, type SetWithdrawRoute, type SpkApiWallet, type SpkMarkets, type StakeEnginePayload, Symbol, type Token, type TokenMetadata, type Transfer, type TransferEnginePayload, type TransferPayload, type TransferToSavings, type TransferToVesting, type TransformedSpkMarkets, type UndelegateEnginePayload, type UnstakeEnginePayload, type UpdateProposalVotes, type VisionPortfolioResponse, type VisionPortfolioWalletItem, type VoteProxy, type WithdrawVesting, broadcastWithWalletHiveAuth, buildAptTx, buildEthTx, buildExternalTx, buildPsbt, buildSolTx, buildTonTx, buildTronTx, cancelHiveEngineOrder, claimHiveEngineRewards, claimInterestHive, decryptMemoWithAccounts, decryptMemoWithKeys, delay, delegateEngineToken, delegateHive, deriveHiveKey, deriveHiveKeys, deriveHiveMasterPasswordKey, deriveHiveMasterPasswordKeys, detectHiveKeyDerivation, encryptMemoWithAccounts, encryptMemoWithKeys, formattedNumber, getAccountWalletAssetInfoQueryOptions, getAccountWalletListQueryOptions, getAllHiveEngineTokensQueryOptions, getAllTokensListQueryOptions, getBoundFetch, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineUnclaimedRewardsQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarketsQueryOptions, getSpkWalletQueryOptions, getTokenOperationsQueryOptions, getTokenPriceQueryOptions, getVisionPortfolioQueryOptions, getWallet, hasWalletHiveAuthBroadcast, isEmptyDate, lockLarynx, mnemonicToSeedBip39, parseAsset, placeHiveEngineBuyOrder, placeHiveEngineSellOrder, powerDownHive, powerUpHive, powerUpLarynx, registerWalletHiveAuthBroadcast, resolveHiveOperationFilters, rewardSpk, signDigest, signExternalTx, signExternalTxAndBroadcast, signTx, signTxAndBroadcast, stakeEngineToken, transferEngineToken, transferFromSavingsHive, transferHive, transferLarynx, transferPoint, transferSpk, transferToSavingsHive, undelegateEngineToken, unstakeEngineToken, useClaimPoints, useClaimRewards, useGetExternalWalletBalanceQuery, useHiveKeysQuery, useImportWallet, useSaveWalletInformationToMetadata, useSeedPhrase, useWalletCreate, useWalletOperation, useWalletsCacheQuery, vestsToHp, withdrawVestingRouteHive };
|
|
2031
|
+
export { type AccountPointsResponse, type Asset, AssetOperation, type AuthorReward, type CancelTransferFromSavings, type ClaimRewardBalance, type CollateralizedConvert, type CommentBenefactor, type CommentPayoutUpdate, type CommentReward, type CurationReward, type DelegateEnginePayload, type DelegateVestingShares, type DelegatedVestingShare, type EcencyHiveKeys, type EcencyTokenMetadata, EcencyWalletBasicTokens, EcencyWalletCurrency, index as EcencyWalletsPrivateApi, type EffectiveCommentVote, type EngineOrderBroadcastOptions, type EngineOrderSignMethod, type ExternalTxParams, type ExternalWalletBalance, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type GeneralAssetInfo, type GeneralAssetTransaction, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveAuthBroadcastHandler, type HiveAuthKeyType, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, type HiveEngineOpenOrder, type HiveEngineOrderBookEntry, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveKeyDerivation, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, type HiveRole, type HiveTransaction, type HiveWithdrawRoute, type Interest, type LimitOrderCancel, type LimitOrderCreate, NaiMap, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type ProducerReward, type ProposalPay, type ReceivedVestingShare, type RecurrentTransfers, type ReturnVestingDelegation, type SetWithdrawRoute, type SpkApiWallet, type SpkMarkets, type StakeEnginePayload, Symbol, type Token, type TokenMetadata, type Transfer, type TransferEnginePayload, type TransferPayload, type TransferToSavings, type TransferToVesting, type TransformedSpkMarkets, type UndelegateEnginePayload, type UnstakeEnginePayload, type UpdateProposalVotes, type VisionPortfolioResponse, type VisionPortfolioWalletItem, type VoteProxy, type WithdrawVesting, broadcastWithWalletHiveAuth, buildAptTx, buildEthTx, buildExternalTx, buildPsbt, buildSolTx, buildTonTx, buildTronTx, cancelHiveEngineOrder, claimHiveEngineRewards, claimInterestHive, convertHbd, decryptMemoWithAccounts, decryptMemoWithKeys, delay, delegateEngineToken, delegateHive, deriveHiveKey, deriveHiveKeys, deriveHiveMasterPasswordKey, deriveHiveMasterPasswordKeys, detectHiveKeyDerivation, encryptMemoWithAccounts, encryptMemoWithKeys, formattedNumber, getAccountWalletAssetInfoQueryOptions, getAccountWalletListQueryOptions, getAllHiveEngineTokensQueryOptions, getAllTokensListQueryOptions, getBoundFetch, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineUnclaimedRewardsQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarketsQueryOptions, getSpkWalletQueryOptions, getTokenOperationsQueryOptions, getTokenPriceQueryOptions, getVisionPortfolioQueryOptions, getWallet, hasWalletHiveAuthBroadcast, isEmptyDate, lockLarynx, mnemonicToSeedBip39, parseAsset, placeHiveEngineBuyOrder, placeHiveEngineSellOrder, powerDownHive, powerUpHive, powerUpLarynx, registerWalletHiveAuthBroadcast, resolveHiveOperationFilters, rewardSpk, signDigest, signExternalTx, signExternalTxAndBroadcast, signTx, signTxAndBroadcast, stakeEngineToken, transferEngineToken, transferFromSavingsHive, transferHive, transferLarynx, transferPoint, transferSpk, transferToSavingsHive, undelegateEngineToken, unstakeEngineToken, useClaimPoints, useClaimRewards, useGetExternalWalletBalanceQuery, useHiveKeysQuery, useImportWallet, useSaveWalletInformationToMetadata, useSeedPhrase, useWalletCreate, useWalletOperation, useWalletsCacheQuery, vestsToHp, withdrawVestingRouteHive };
|
package/dist/browser/index.js
CHANGED
|
@@ -1552,6 +1552,33 @@ async function claimInterestHive(payload, auth) {
|
|
|
1552
1552
|
return hs.sendOperations(operations, { callback: `https://ecency.com/@${payload.from}/wallet` }, () => {
|
|
1553
1553
|
});
|
|
1554
1554
|
}
|
|
1555
|
+
async function convertHbd(payload, auth) {
|
|
1556
|
+
const requestid = Math.floor(Date.now() / 1e3);
|
|
1557
|
+
const operationPayload = {
|
|
1558
|
+
owner: payload.from,
|
|
1559
|
+
requestid,
|
|
1560
|
+
amount: payload.amount
|
|
1561
|
+
};
|
|
1562
|
+
const operation = ["convert", operationPayload];
|
|
1563
|
+
if (payload.type === "key" && "key" in payload) {
|
|
1564
|
+
const { key, type, ...params } = payload;
|
|
1565
|
+
return CONFIG.hiveClient.broadcast.sendOperations(
|
|
1566
|
+
[["convert", { ...params, owner: params.from, requestid }]],
|
|
1567
|
+
key
|
|
1568
|
+
);
|
|
1569
|
+
} else if (payload.type === "keychain" || payload.type === "hiveauth") {
|
|
1570
|
+
if (auth?.broadcast) {
|
|
1571
|
+
return auth.broadcast([operation], "active");
|
|
1572
|
+
}
|
|
1573
|
+
if (payload.type === "hiveauth") {
|
|
1574
|
+
return broadcastWithWalletHiveAuth(payload.from, [operation], "active");
|
|
1575
|
+
}
|
|
1576
|
+
throw new Error("[SDK][Wallets] \u2013 missing broadcaster");
|
|
1577
|
+
} else {
|
|
1578
|
+
return hs.sendOperation(operation, { callback: `https://ecency.com/@${payload.from}/wallet` }, () => {
|
|
1579
|
+
});
|
|
1580
|
+
}
|
|
1581
|
+
}
|
|
1555
1582
|
|
|
1556
1583
|
// src/modules/assets/types/asset-operation.ts
|
|
1557
1584
|
var AssetOperation = /* @__PURE__ */ ((AssetOperation2) => {
|
|
@@ -4096,7 +4123,8 @@ var operationToFunctionMap = {
|
|
|
4096
4123
|
["transfer" /* Transfer */]: transferHive,
|
|
4097
4124
|
["transfer-saving" /* TransferToSavings */]: transferToSavingsHive,
|
|
4098
4125
|
["withdraw-saving" /* WithdrawFromSavings */]: transferFromSavingsHive,
|
|
4099
|
-
["claim-interest" /* ClaimInterest */]: claimInterestHive
|
|
4126
|
+
["claim-interest" /* ClaimInterest */]: claimInterestHive,
|
|
4127
|
+
["convert" /* Convert */]: convertHbd
|
|
4100
4128
|
},
|
|
4101
4129
|
HP: {
|
|
4102
4130
|
["power-down" /* PowerDown */]: powerDownHive,
|
|
@@ -4187,6 +4215,6 @@ function useWalletOperation(username, asset, operation, auth) {
|
|
|
4187
4215
|
// src/index.ts
|
|
4188
4216
|
rememberScryptBsvVersion();
|
|
4189
4217
|
|
|
4190
|
-
export { AssetOperation, EcencyWalletBasicTokens, EcencyWalletCurrency, private_api_exports as EcencyWalletsPrivateApi, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, HiveEngineToken, NaiMap, PointTransactionType, Symbol2 as Symbol, broadcastWithWalletHiveAuth, buildAptTx, buildEthTx, buildExternalTx, buildPsbt, buildSolTx, buildTonTx, buildTronTx, cancelHiveEngineOrder, claimHiveEngineRewards, claimInterestHive, decryptMemoWithAccounts, decryptMemoWithKeys, delay, delegateEngineToken, delegateHive, deriveHiveKey, deriveHiveKeys, deriveHiveMasterPasswordKey, deriveHiveMasterPasswordKeys, detectHiveKeyDerivation, encryptMemoWithAccounts, encryptMemoWithKeys, formattedNumber, getAccountWalletAssetInfoQueryOptions, getAccountWalletListQueryOptions, getAllHiveEngineTokensQueryOptions, getAllTokensListQueryOptions, getBoundFetch, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineUnclaimedRewardsQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarketsQueryOptions, getSpkWalletQueryOptions, getTokenOperationsQueryOptions, getTokenPriceQueryOptions, getVisionPortfolioQueryOptions, getWallet, hasWalletHiveAuthBroadcast, isEmptyDate, lockLarynx, mnemonicToSeedBip39, parseAsset, placeHiveEngineBuyOrder, placeHiveEngineSellOrder, powerDownHive, powerUpHive, powerUpLarynx, registerWalletHiveAuthBroadcast, resolveHiveOperationFilters, rewardSpk, signDigest, signExternalTx, signExternalTxAndBroadcast, signTx, signTxAndBroadcast, stakeEngineToken, transferEngineToken, transferFromSavingsHive, transferHive, transferLarynx, transferPoint, transferSpk, transferToSavingsHive, undelegateEngineToken, unstakeEngineToken, useClaimPoints, useClaimRewards, useGetExternalWalletBalanceQuery, useHiveKeysQuery, useImportWallet, useSaveWalletInformationToMetadata, useSeedPhrase, useWalletCreate, useWalletOperation, useWalletsCacheQuery, vestsToHp, withdrawVestingRouteHive };
|
|
4218
|
+
export { AssetOperation, EcencyWalletBasicTokens, EcencyWalletCurrency, private_api_exports as EcencyWalletsPrivateApi, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, HiveEngineToken, NaiMap, PointTransactionType, Symbol2 as Symbol, broadcastWithWalletHiveAuth, buildAptTx, buildEthTx, buildExternalTx, buildPsbt, buildSolTx, buildTonTx, buildTronTx, cancelHiveEngineOrder, claimHiveEngineRewards, claimInterestHive, convertHbd, decryptMemoWithAccounts, decryptMemoWithKeys, delay, delegateEngineToken, delegateHive, deriveHiveKey, deriveHiveKeys, deriveHiveMasterPasswordKey, deriveHiveMasterPasswordKeys, detectHiveKeyDerivation, encryptMemoWithAccounts, encryptMemoWithKeys, formattedNumber, getAccountWalletAssetInfoQueryOptions, getAccountWalletListQueryOptions, getAllHiveEngineTokensQueryOptions, getAllTokensListQueryOptions, getBoundFetch, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineUnclaimedRewardsQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarketsQueryOptions, getSpkWalletQueryOptions, getTokenOperationsQueryOptions, getTokenPriceQueryOptions, getVisionPortfolioQueryOptions, getWallet, hasWalletHiveAuthBroadcast, isEmptyDate, lockLarynx, mnemonicToSeedBip39, parseAsset, placeHiveEngineBuyOrder, placeHiveEngineSellOrder, powerDownHive, powerUpHive, powerUpLarynx, registerWalletHiveAuthBroadcast, resolveHiveOperationFilters, rewardSpk, signDigest, signExternalTx, signExternalTxAndBroadcast, signTx, signTxAndBroadcast, stakeEngineToken, transferEngineToken, transferFromSavingsHive, transferHive, transferLarynx, transferPoint, transferSpk, transferToSavingsHive, undelegateEngineToken, unstakeEngineToken, useClaimPoints, useClaimRewards, useGetExternalWalletBalanceQuery, useHiveKeysQuery, useImportWallet, useSaveWalletInformationToMetadata, useSeedPhrase, useWalletCreate, useWalletOperation, useWalletsCacheQuery, vestsToHp, withdrawVestingRouteHive };
|
|
4191
4219
|
//# sourceMappingURL=index.js.map
|
|
4192
4220
|
//# sourceMappingURL=index.js.map
|