@ecency/sdk 1.5.20 → 1.5.22
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 +55 -1
- package/dist/browser/index.js +181 -6
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +181 -5
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +181 -6
- package/dist/node/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser/index.d.ts
CHANGED
|
@@ -463,6 +463,8 @@ interface Payload$2 {
|
|
|
463
463
|
keepCurrent?: boolean;
|
|
464
464
|
currentKey: PrivateKey;
|
|
465
465
|
keys: Keys[];
|
|
466
|
+
keysToRevoke?: string[];
|
|
467
|
+
keysToRevokeByAuthority?: Partial<Record<keyof Keys, string[]>>;
|
|
466
468
|
}
|
|
467
469
|
declare function dedupeAndSortKeyAuths(existing: AuthorityType["key_auths"], additions: [string, number][]): AuthorityType["key_auths"];
|
|
468
470
|
type UpdateKeyAuthsOptions = Pick<UseMutationOptions<unknown, Error, Payload$2>, "onSuccess" | "onError">;
|
|
@@ -2985,6 +2987,58 @@ declare function getRecurrentTransfersQueryOptions(username: string): _tanstack_
|
|
|
2985
2987
|
};
|
|
2986
2988
|
};
|
|
2987
2989
|
|
|
2990
|
+
type PortfolioLayer = "points" | "hive" | "chain" | "spk" | "engine";
|
|
2991
|
+
interface TokenAction {
|
|
2992
|
+
id: string;
|
|
2993
|
+
[key: string]: unknown;
|
|
2994
|
+
}
|
|
2995
|
+
interface PortfolioWalletItem {
|
|
2996
|
+
name: string;
|
|
2997
|
+
symbol: string;
|
|
2998
|
+
layer: PortfolioLayer;
|
|
2999
|
+
balance: number;
|
|
3000
|
+
fiatRate: number;
|
|
3001
|
+
currency: string;
|
|
3002
|
+
precision: number;
|
|
3003
|
+
address?: string;
|
|
3004
|
+
error?: string;
|
|
3005
|
+
pendingRewards?: number;
|
|
3006
|
+
pendingRewardsFiat?: number;
|
|
3007
|
+
liquid?: number;
|
|
3008
|
+
liquidFiat?: number;
|
|
3009
|
+
savings?: number;
|
|
3010
|
+
savingsFiat?: number;
|
|
3011
|
+
staked?: number;
|
|
3012
|
+
stakedFiat?: number;
|
|
3013
|
+
iconUrl?: string;
|
|
3014
|
+
actions?: TokenAction[];
|
|
3015
|
+
extraData?: Array<{
|
|
3016
|
+
dataKey: string;
|
|
3017
|
+
value: any;
|
|
3018
|
+
}>;
|
|
3019
|
+
apr?: number;
|
|
3020
|
+
}
|
|
3021
|
+
interface PortfolioResponse {
|
|
3022
|
+
username: string;
|
|
3023
|
+
currency?: string;
|
|
3024
|
+
wallets: PortfolioWalletItem[];
|
|
3025
|
+
}
|
|
3026
|
+
/**
|
|
3027
|
+
* Get portfolio query options for fetching user's wallet balances across all layers
|
|
3028
|
+
* @param username - Hive username
|
|
3029
|
+
* @param currency - Fiat currency code (default: "usd")
|
|
3030
|
+
* @param onlyEnabled - Only return enabled tokens (default: true)
|
|
3031
|
+
* @returns TanStack Query options for portfolio data
|
|
3032
|
+
*/
|
|
3033
|
+
declare function getPortfolioQueryOptions(username: string, currency?: string, onlyEnabled?: boolean): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<PortfolioResponse, Error, PortfolioResponse, string[]>, "queryFn"> & {
|
|
3034
|
+
queryFn?: _tanstack_react_query.QueryFunction<PortfolioResponse, string[], never> | undefined;
|
|
3035
|
+
} & {
|
|
3036
|
+
queryKey: string[] & {
|
|
3037
|
+
[dataTagSymbol]: PortfolioResponse;
|
|
3038
|
+
[dataTagErrorSymbol]: Error;
|
|
3039
|
+
};
|
|
3040
|
+
};
|
|
3041
|
+
|
|
2988
3042
|
interface Witness {
|
|
2989
3043
|
total_missed: number;
|
|
2990
3044
|
url: string;
|
|
@@ -3462,4 +3516,4 @@ declare function getHiveEngineUnclaimedRewards<T = Record<string, unknown>>(user
|
|
|
3462
3516
|
declare function getSpkWallet<T = Record<string, unknown>>(username: string): Promise<T>;
|
|
3463
3517
|
declare function getSpkMarkets<T = Record<string, unknown>>(): Promise<T>;
|
|
3464
3518
|
|
|
3465
|
-
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountFavorite, type AccountFollowStats, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AccountSearchResult, type Announcement, type ApiBookmarkNotification, type ApiDelegationsNotification, type ApiFavoriteNotification, type ApiFollowNotification, type ApiInactiveNotification, type ApiMentionNotification, type ApiNotification, type ApiNotificationSetting, type ApiReblogNotification, type ApiReferralNotification, type ApiReplyNotification, type ApiResponse, type ApiSpinNotification, type ApiTransferNotification, type ApiVoteNotification, type Asset, type AuthContext, type AuthorReward, type BlogEntry, type BoostPlusAccountPrice, type BuildProfileMetadataArgs, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimRewardBalance, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DelegateVestingShares, type DelegatedVestingShare, type DeletedEntry, type Draft, type DraftMetadata, type DraftsWrappedResponse, type DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GetGameStatus, type GetRecoveriesEmailResponse, type HiveEngineOpenOrder, type HiveHbdStats, HiveSignerIntegration, type HsTokenRenewResponse, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCreate, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, type OpenOrdersData, type OperationGroup, type OrdersData, type OrdersDataItem, type PageStatsResponse, type PaginationMeta, type Payer, type PointTransaction, type Points, type PostTip, type PostTipsResponse, type ProducerReward, type Profile, type ProfileTokens, type PromotePrice, type Proposal, type ProposalPay, type ProposalVote, type ProposalVoteRow, ROLES, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcStats, type Reblog, type ReceivedVestingShare, type RecordActivityOptions, type Recoveries, type RecurrentTransfer, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardedCommunity, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetWithdrawRoute, SortOrder, type StatsResponse, type Subscription, Symbol, type TagSearchResult, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Transaction, type Transfer, type TransferToSavings, type TransferToVesting, type TrendingTag, type UpdateProposalVotes, type UserImage, type ValidatePostCreatingOptions, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VoteProxy, type WalletMetadataCandidate, type WaveEntry, type WaveTrendingTag, type WithdrawRoute, type WithdrawVesting, type Witness, type WrappedResponse, type WsBookmarkNotification, type WsDelegationsNotification, type WsFavoriteNotification, type WsFollowNotification, type WsInactiveNotification, type WsMentionNotification, type WsNotification, type WsReblogNotification, type WsReferralNotification, type WsReplyNotification, type WsSpinNotification, type WsTransferNotification, type WsVoteNotification, addDraft, addImage, addSchedule, bridgeApiCall, broadcastJson, buildProfileMetadata, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountsQueryOptions, getAnnouncementsQueryOptions, getBookmarksInfiniteQueryOptions, getBookmarksQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavouritesInfiniteQueryOptions, getFavouritesQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokensBalances, getHiveEngineTokensMarket, getHiveEngineTokensMetadata, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkMarkets, getSpkWallet, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFollowingQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, isCommunity, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseProfileMetadata, powerRechargeTime, rcPower, resolvePost, roleMap, saveNotificationSetting, search, searchAccount, searchPath, searchQueryOptions, searchTag, signUp, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, uploadImage, useAccountFavouriteAdd, useAccountFavouriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useBookmarkAdd, useBookmarkDelete, useBroadcastMutation, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useGameClaim, useMarkNotificationsRead, useMoveSchedule, useRecordActivity, useRemoveFragment, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useUpdateDraft, useUploadImage, usrActivity, validatePostCreating, votingPower, votingValue };
|
|
3519
|
+
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountFavorite, type AccountFollowStats, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AccountSearchResult, type Announcement, type ApiBookmarkNotification, type ApiDelegationsNotification, type ApiFavoriteNotification, type ApiFollowNotification, type ApiInactiveNotification, type ApiMentionNotification, type ApiNotification, type ApiNotificationSetting, type ApiReblogNotification, type ApiReferralNotification, type ApiReplyNotification, type ApiResponse, type ApiSpinNotification, type ApiTransferNotification, type ApiVoteNotification, type Asset, type AuthContext, type AuthorReward, type BlogEntry, type BoostPlusAccountPrice, type BuildProfileMetadataArgs, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimRewardBalance, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DelegateVestingShares, type DelegatedVestingShare, type DeletedEntry, type Draft, type DraftMetadata, type DraftsWrappedResponse, type DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GetGameStatus, type GetRecoveriesEmailResponse, type HiveEngineOpenOrder, type HiveHbdStats, HiveSignerIntegration, type HsTokenRenewResponse, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCreate, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, type OpenOrdersData, type OperationGroup, type OrdersData, type OrdersDataItem, type PageStatsResponse, type PaginationMeta, type Payer, type PointTransaction, type Points, type PortfolioResponse, type PortfolioWalletItem, type PostTip, type PostTipsResponse, type ProducerReward, type Profile, type ProfileTokens, type PromotePrice, type Proposal, type ProposalPay, type ProposalVote, type ProposalVoteRow, ROLES, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcStats, type Reblog, type ReceivedVestingShare, type RecordActivityOptions, type Recoveries, type RecurrentTransfer, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardedCommunity, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetWithdrawRoute, SortOrder, type StatsResponse, type Subscription, Symbol, type TagSearchResult, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Transaction, type Transfer, type TransferToSavings, type TransferToVesting, type TrendingTag, type UpdateProposalVotes, type UserImage, type ValidatePostCreatingOptions, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VoteProxy, type WalletMetadataCandidate, type WaveEntry, type WaveTrendingTag, type WithdrawRoute, type WithdrawVesting, type Witness, type WrappedResponse, type WsBookmarkNotification, type WsDelegationsNotification, type WsFavoriteNotification, type WsFollowNotification, type WsInactiveNotification, type WsMentionNotification, type WsNotification, type WsReblogNotification, type WsReferralNotification, type WsReplyNotification, type WsSpinNotification, type WsTransferNotification, type WsVoteNotification, addDraft, addImage, addSchedule, bridgeApiCall, broadcastJson, buildProfileMetadata, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountsQueryOptions, getAnnouncementsQueryOptions, getBookmarksInfiniteQueryOptions, getBookmarksQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavouritesInfiniteQueryOptions, getFavouritesQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokensBalances, getHiveEngineTokensMarket, getHiveEngineTokensMetadata, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsQueryOptions, getPortfolioQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkMarkets, getSpkWallet, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFollowingQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, isCommunity, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseProfileMetadata, powerRechargeTime, rcPower, resolvePost, roleMap, saveNotificationSetting, search, searchAccount, searchPath, searchQueryOptions, searchTag, signUp, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, uploadImage, useAccountFavouriteAdd, useAccountFavouriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useBookmarkAdd, useBookmarkDelete, useBroadcastMutation, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useGameClaim, useMarkNotificationsRead, useMoveSchedule, useRecordActivity, useRemoveFragment, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useUpdateDraft, useUploadImage, usrActivity, validatePostCreating, votingPower, votingValue };
|
package/dist/browser/index.js
CHANGED
|
@@ -2353,8 +2353,8 @@ function toEntryArray(x) {
|
|
|
2353
2353
|
return Array.isArray(x) ? x : [];
|
|
2354
2354
|
}
|
|
2355
2355
|
async function getVisibleFirstLevelThreadItems(container) {
|
|
2356
|
-
const
|
|
2357
|
-
const discussionItemsRaw = await CONFIG.queryClient.fetchQuery(
|
|
2356
|
+
const queryOptions89 = getDiscussionsQueryOptions(container, "created" /* created */, true);
|
|
2357
|
+
const discussionItemsRaw = await CONFIG.queryClient.fetchQuery(queryOptions89);
|
|
2358
2358
|
const discussionItems = toEntryArray(discussionItemsRaw);
|
|
2359
2359
|
if (discussionItems.length <= 1) {
|
|
2360
2360
|
return [];
|
|
@@ -2876,7 +2876,18 @@ function useAccountUpdateKeyAuths(username, options) {
|
|
|
2876
2876
|
const { data: accountData } = useQuery(getAccountFullQueryOptions(username));
|
|
2877
2877
|
return useMutation({
|
|
2878
2878
|
mutationKey: ["accounts", "keys-update", username],
|
|
2879
|
-
mutationFn: async ({
|
|
2879
|
+
mutationFn: async ({
|
|
2880
|
+
keys,
|
|
2881
|
+
keepCurrent = false,
|
|
2882
|
+
currentKey,
|
|
2883
|
+
keysToRevoke = [],
|
|
2884
|
+
keysToRevokeByAuthority = {}
|
|
2885
|
+
}) => {
|
|
2886
|
+
if (keys.length === 0) {
|
|
2887
|
+
throw new Error(
|
|
2888
|
+
"[SDK][Update password] \u2013 no new keys provided"
|
|
2889
|
+
);
|
|
2890
|
+
}
|
|
2880
2891
|
if (!accountData) {
|
|
2881
2892
|
throw new Error(
|
|
2882
2893
|
"[SDK][Update password] \u2013 cannot update keys for anon user"
|
|
@@ -2884,8 +2895,14 @@ function useAccountUpdateKeyAuths(username, options) {
|
|
|
2884
2895
|
}
|
|
2885
2896
|
const prepareAuth = (keyName) => {
|
|
2886
2897
|
const auth = R4.clone(accountData[keyName]);
|
|
2898
|
+
const keysToRevokeForAuthority = keysToRevokeByAuthority[keyName] || [];
|
|
2899
|
+
const allKeysToRevoke = [
|
|
2900
|
+
...keysToRevokeForAuthority,
|
|
2901
|
+
...keysToRevokeByAuthority[keyName] === void 0 ? keysToRevoke : []
|
|
2902
|
+
];
|
|
2903
|
+
const existingKeys = keepCurrent ? auth.key_auths.filter(([key]) => !allKeysToRevoke.includes(key.toString())) : [];
|
|
2887
2904
|
auth.key_auths = dedupeAndSortKeyAuths(
|
|
2888
|
-
|
|
2905
|
+
existingKeys,
|
|
2889
2906
|
keys.map(
|
|
2890
2907
|
(values, i) => [values[keyName].createPublic().toString(), i + 1]
|
|
2891
2908
|
)
|
|
@@ -2899,7 +2916,8 @@ function useAccountUpdateKeyAuths(username, options) {
|
|
|
2899
2916
|
owner: prepareAuth("owner"),
|
|
2900
2917
|
active: prepareAuth("active"),
|
|
2901
2918
|
posting: prepareAuth("posting"),
|
|
2902
|
-
|
|
2919
|
+
// Always use new memo key when adding new keys
|
|
2920
|
+
memo_key: keys[0].memo_key.createPublic().toString()
|
|
2903
2921
|
},
|
|
2904
2922
|
currentKey
|
|
2905
2923
|
);
|
|
@@ -4908,6 +4926,163 @@ function getRecurrentTransfersQueryOptions(username) {
|
|
|
4908
4926
|
enabled: !!username
|
|
4909
4927
|
});
|
|
4910
4928
|
}
|
|
4929
|
+
function normalizeString(value) {
|
|
4930
|
+
if (typeof value === "string") {
|
|
4931
|
+
const trimmed = value.trim();
|
|
4932
|
+
return trimmed.length > 0 ? trimmed : void 0;
|
|
4933
|
+
}
|
|
4934
|
+
return void 0;
|
|
4935
|
+
}
|
|
4936
|
+
function normalizeNumber(value) {
|
|
4937
|
+
if (typeof value === "number" && Number.isFinite(value)) {
|
|
4938
|
+
return value;
|
|
4939
|
+
}
|
|
4940
|
+
if (typeof value === "string") {
|
|
4941
|
+
const trimmed = value.trim();
|
|
4942
|
+
if (!trimmed) {
|
|
4943
|
+
return void 0;
|
|
4944
|
+
}
|
|
4945
|
+
const direct = Number.parseFloat(trimmed);
|
|
4946
|
+
if (Number.isFinite(direct)) {
|
|
4947
|
+
return direct;
|
|
4948
|
+
}
|
|
4949
|
+
const sanitized = trimmed.replace(/,/g, "");
|
|
4950
|
+
const match = sanitized.match(/[-+]?\d+(?:\.\d+)?/);
|
|
4951
|
+
if (match) {
|
|
4952
|
+
const parsed = Number.parseFloat(match[0]);
|
|
4953
|
+
if (Number.isFinite(parsed)) {
|
|
4954
|
+
return parsed;
|
|
4955
|
+
}
|
|
4956
|
+
}
|
|
4957
|
+
}
|
|
4958
|
+
return void 0;
|
|
4959
|
+
}
|
|
4960
|
+
function parseToken(rawToken) {
|
|
4961
|
+
if (!rawToken || typeof rawToken !== "object") {
|
|
4962
|
+
return void 0;
|
|
4963
|
+
}
|
|
4964
|
+
const token = rawToken;
|
|
4965
|
+
return {
|
|
4966
|
+
name: normalizeString(token.name) ?? "",
|
|
4967
|
+
symbol: normalizeString(token.symbol) ?? "",
|
|
4968
|
+
layer: normalizeString(token.layer) ?? "hive",
|
|
4969
|
+
balance: normalizeNumber(token.balance) ?? 0,
|
|
4970
|
+
fiatRate: normalizeNumber(token.fiatRate) ?? 0,
|
|
4971
|
+
currency: normalizeString(token.currency) ?? "usd",
|
|
4972
|
+
precision: normalizeNumber(token.precision) ?? 3,
|
|
4973
|
+
address: normalizeString(token.address),
|
|
4974
|
+
error: normalizeString(token.error),
|
|
4975
|
+
pendingRewards: normalizeNumber(token.pendingRewards),
|
|
4976
|
+
pendingRewardsFiat: normalizeNumber(token.pendingRewardsFiat),
|
|
4977
|
+
liquid: normalizeNumber(token.liquid),
|
|
4978
|
+
liquidFiat: normalizeNumber(token.liquidFiat),
|
|
4979
|
+
savings: normalizeNumber(token.savings),
|
|
4980
|
+
savingsFiat: normalizeNumber(token.savingsFiat),
|
|
4981
|
+
staked: normalizeNumber(token.staked),
|
|
4982
|
+
stakedFiat: normalizeNumber(token.stakedFiat),
|
|
4983
|
+
iconUrl: normalizeString(token.iconUrl),
|
|
4984
|
+
actions: token.actions ?? [],
|
|
4985
|
+
extraData: token.extraData ?? [],
|
|
4986
|
+
apr: normalizeNumber(token.apr)
|
|
4987
|
+
};
|
|
4988
|
+
}
|
|
4989
|
+
function extractTokens(payload) {
|
|
4990
|
+
if (!payload || typeof payload !== "object") {
|
|
4991
|
+
return [];
|
|
4992
|
+
}
|
|
4993
|
+
const containers = [payload];
|
|
4994
|
+
const record = payload;
|
|
4995
|
+
if (record.data && typeof record.data === "object") {
|
|
4996
|
+
containers.push(record.data);
|
|
4997
|
+
}
|
|
4998
|
+
if (record.result && typeof record.result === "object") {
|
|
4999
|
+
containers.push(record.result);
|
|
5000
|
+
}
|
|
5001
|
+
if (record.portfolio && typeof record.portfolio === "object") {
|
|
5002
|
+
containers.push(record.portfolio);
|
|
5003
|
+
}
|
|
5004
|
+
for (const container of containers) {
|
|
5005
|
+
if (Array.isArray(container)) {
|
|
5006
|
+
return container;
|
|
5007
|
+
}
|
|
5008
|
+
if (container && typeof container === "object") {
|
|
5009
|
+
for (const key of [
|
|
5010
|
+
"wallets",
|
|
5011
|
+
"tokens",
|
|
5012
|
+
"assets",
|
|
5013
|
+
"items",
|
|
5014
|
+
"portfolio",
|
|
5015
|
+
"balances"
|
|
5016
|
+
]) {
|
|
5017
|
+
const value = container[key];
|
|
5018
|
+
if (Array.isArray(value)) {
|
|
5019
|
+
return value;
|
|
5020
|
+
}
|
|
5021
|
+
}
|
|
5022
|
+
}
|
|
5023
|
+
}
|
|
5024
|
+
return [];
|
|
5025
|
+
}
|
|
5026
|
+
function resolveUsername(payload) {
|
|
5027
|
+
if (!payload || typeof payload !== "object") {
|
|
5028
|
+
return void 0;
|
|
5029
|
+
}
|
|
5030
|
+
const record = payload;
|
|
5031
|
+
return normalizeString(record.username) ?? normalizeString(record.name) ?? normalizeString(record.account);
|
|
5032
|
+
}
|
|
5033
|
+
function getPortfolioQueryOptions(username, currency = "usd", onlyEnabled = true) {
|
|
5034
|
+
return queryOptions({
|
|
5035
|
+
queryKey: [
|
|
5036
|
+
"wallet",
|
|
5037
|
+
"portfolio",
|
|
5038
|
+
"v2",
|
|
5039
|
+
username,
|
|
5040
|
+
onlyEnabled ? "only-enabled" : "all",
|
|
5041
|
+
currency
|
|
5042
|
+
],
|
|
5043
|
+
enabled: Boolean(username),
|
|
5044
|
+
staleTime: 6e4,
|
|
5045
|
+
refetchInterval: 12e4,
|
|
5046
|
+
queryFn: async () => {
|
|
5047
|
+
if (!username) {
|
|
5048
|
+
throw new Error("[SDK][Wallet] \u2013 username is required");
|
|
5049
|
+
}
|
|
5050
|
+
if (CONFIG.privateApiHost === void 0 || CONFIG.privateApiHost === null) {
|
|
5051
|
+
throw new Error(
|
|
5052
|
+
"[SDK][Wallet] \u2013 privateApiHost isn't configured for portfolio"
|
|
5053
|
+
);
|
|
5054
|
+
}
|
|
5055
|
+
const endpoint = `${CONFIG.privateApiHost}/wallet-api/portfolio-v2`;
|
|
5056
|
+
const response = await fetch(endpoint, {
|
|
5057
|
+
method: "POST",
|
|
5058
|
+
headers: {
|
|
5059
|
+
Accept: "application/json",
|
|
5060
|
+
"Content-Type": "application/json"
|
|
5061
|
+
},
|
|
5062
|
+
body: JSON.stringify({ username, onlyEnabled, currency })
|
|
5063
|
+
});
|
|
5064
|
+
if (!response.ok) {
|
|
5065
|
+
throw new Error(
|
|
5066
|
+
`[SDK][Wallet] \u2013 Portfolio request failed (${response.status})`
|
|
5067
|
+
);
|
|
5068
|
+
}
|
|
5069
|
+
const payload = await response.json();
|
|
5070
|
+
const tokens = extractTokens(payload).map((item) => parseToken(item)).filter((item) => Boolean(item));
|
|
5071
|
+
if (!tokens.length) {
|
|
5072
|
+
throw new Error(
|
|
5073
|
+
"[SDK][Wallet] \u2013 Portfolio payload contained no tokens"
|
|
5074
|
+
);
|
|
5075
|
+
}
|
|
5076
|
+
return {
|
|
5077
|
+
username: resolveUsername(payload) ?? username,
|
|
5078
|
+
currency: normalizeString(
|
|
5079
|
+
payload?.fiatCurrency ?? payload?.currency
|
|
5080
|
+
)?.toUpperCase(),
|
|
5081
|
+
wallets: tokens
|
|
5082
|
+
};
|
|
5083
|
+
}
|
|
5084
|
+
});
|
|
5085
|
+
}
|
|
4911
5086
|
function getWitnessesInfiniteQueryOptions(limit) {
|
|
4912
5087
|
return infiniteQueryOptions({
|
|
4913
5088
|
queryKey: ["witnesses", "list", limit],
|
|
@@ -5781,6 +5956,6 @@ async function getSpkMarkets() {
|
|
|
5781
5956
|
return await response.json();
|
|
5782
5957
|
}
|
|
5783
5958
|
|
|
5784
|
-
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, CONFIG, ConfigManager, mutations_exports as EcencyAnalytics, EcencyQueriesManager, HiveSignerIntegration, NaiMap, NotificationFilter, NotificationViewType, NotifyTypes, ROLES, SortOrder, Symbol2 as Symbol, ThreeSpeakIntegration, addDraft, addImage, addSchedule, bridgeApiCall, broadcastJson, buildProfileMetadata, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountsQueryOptions, getAnnouncementsQueryOptions, getBookmarksInfiniteQueryOptions, getBookmarksQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavouritesInfiniteQueryOptions, getFavouritesQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokensBalances, getHiveEngineTokensMarket, getHiveEngineTokensMetadata, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkMarkets, getSpkWallet, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFollowingQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, isCommunity, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseProfileMetadata, powerRechargeTime, rcPower, resolvePost, roleMap, saveNotificationSetting, search, searchAccount, searchPath, searchQueryOptions, searchTag, signUp, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, uploadImage, useAccountFavouriteAdd, useAccountFavouriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useBookmarkAdd, useBookmarkDelete, useBroadcastMutation, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useGameClaim, useMarkNotificationsRead, useMoveSchedule, useRecordActivity, useRemoveFragment, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useUpdateDraft, useUploadImage, usrActivity, validatePostCreating, votingPower, votingValue };
|
|
5959
|
+
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, CONFIG, ConfigManager, mutations_exports as EcencyAnalytics, EcencyQueriesManager, HiveSignerIntegration, NaiMap, NotificationFilter, NotificationViewType, NotifyTypes, ROLES, SortOrder, Symbol2 as Symbol, ThreeSpeakIntegration, addDraft, addImage, addSchedule, bridgeApiCall, broadcastJson, buildProfileMetadata, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountsQueryOptions, getAnnouncementsQueryOptions, getBookmarksInfiniteQueryOptions, getBookmarksQueryOptions, getBoostPlusAccountPricesQueryOptions, getBoostPlusPricesQueryOptions, getBotsQueryOptions, getBoundFetch, getChainPropertiesQueryOptions, getCollateralizedConversionRequestsQueryOptions, getCommentHistoryQueryOptions, getCommunities, getCommunitiesQueryOptions, getCommunity, getCommunityContextQueryOptions, getCommunityPermissions, getCommunityQueryOptions, getCommunitySubscribersQueryOptions, getCommunityType, getContentQueryOptions, getContentRepliesQueryOptions, getControversialRisingInfiniteQueryOptions, getConversionRequestsQueryOptions, getCurrencyRate, getCurrencyRates, getCurrencyTokenRate, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavouritesInfiniteQueryOptions, getFavouritesQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokensBalances, getHiveEngineTokensMarket, getHiveEngineTokensMetadata, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsQueryOptions, getPortfolioQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkMarkets, getSpkWallet, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFollowingQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, isCommunity, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseProfileMetadata, powerRechargeTime, rcPower, resolvePost, roleMap, saveNotificationSetting, search, searchAccount, searchPath, searchQueryOptions, searchTag, signUp, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, uploadImage, useAccountFavouriteAdd, useAccountFavouriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useBookmarkAdd, useBookmarkDelete, useBroadcastMutation, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useGameClaim, useMarkNotificationsRead, useMoveSchedule, useRecordActivity, useRemoveFragment, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useUpdateDraft, useUploadImage, usrActivity, validatePostCreating, votingPower, votingValue };
|
|
5785
5960
|
//# sourceMappingURL=index.js.map
|
|
5786
5961
|
//# sourceMappingURL=index.js.map
|