@ecency/sdk 1.5.23 → 1.5.25
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 +113 -1
- package/dist/browser/index.js +128 -38
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +132 -37
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +128 -38
- package/dist/node/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/node/index.mjs
CHANGED
|
@@ -422,41 +422,30 @@ function getDynamicPropsQueryOptions() {
|
|
|
422
422
|
staleTime: 6e4,
|
|
423
423
|
refetchOnMount: true,
|
|
424
424
|
queryFn: async () => {
|
|
425
|
-
const
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
const
|
|
436
|
-
|
|
437
|
-
);
|
|
438
|
-
const
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
const
|
|
443
|
-
const
|
|
444
|
-
const
|
|
445
|
-
const
|
|
446
|
-
const
|
|
447
|
-
const hbdPrintRate = globalDynamic.hbd_print_rate;
|
|
448
|
-
const hbdInterestRate = globalDynamic.hbd_interest_rate;
|
|
449
|
-
const headBlock = globalDynamic.head_block_number;
|
|
450
|
-
const totalVestingFund = parseAsset(
|
|
451
|
-
globalDynamic.total_vesting_fund_hive
|
|
452
|
-
).amount;
|
|
453
|
-
const totalVestingShares = parseAsset(
|
|
454
|
-
globalDynamic.total_vesting_shares
|
|
455
|
-
).amount;
|
|
456
|
-
const virtualSupply = parseAsset(globalDynamic.virtual_supply).amount;
|
|
457
|
-
const vestingRewardPercent = globalDynamic.vesting_reward_percent;
|
|
458
|
-
const accountCreationFee = chainProps.account_creation_fee;
|
|
425
|
+
const rawGlobalDynamic = await CONFIG.hiveClient.database.getDynamicGlobalProperties();
|
|
426
|
+
const rawFeedHistory = await CONFIG.hiveClient.database.call("get_feed_history");
|
|
427
|
+
const rawChainProps = await CONFIG.hiveClient.database.call("get_chain_properties");
|
|
428
|
+
const rawRewardFund = await CONFIG.hiveClient.database.call("get_reward_fund", ["post"]);
|
|
429
|
+
const totalVestingSharesAmount = parseAsset(rawGlobalDynamic.total_vesting_shares).amount;
|
|
430
|
+
const totalVestingFundAmount = parseAsset(rawGlobalDynamic.total_vesting_fund_hive).amount;
|
|
431
|
+
let hivePerMVests = 0;
|
|
432
|
+
if (Number.isFinite(totalVestingSharesAmount) && totalVestingSharesAmount !== 0 && Number.isFinite(totalVestingFundAmount)) {
|
|
433
|
+
hivePerMVests = totalVestingFundAmount / totalVestingSharesAmount * 1e6;
|
|
434
|
+
}
|
|
435
|
+
const base = parseAsset(rawFeedHistory.current_median_history.base).amount;
|
|
436
|
+
const quote = parseAsset(rawFeedHistory.current_median_history.quote).amount;
|
|
437
|
+
const fundRecentClaims = parseFloat(rawRewardFund.recent_claims);
|
|
438
|
+
const fundRewardBalance = parseAsset(rawRewardFund.reward_balance).amount;
|
|
439
|
+
const hbdPrintRate = rawGlobalDynamic.hbd_print_rate;
|
|
440
|
+
const hbdInterestRate = rawGlobalDynamic.hbd_interest_rate;
|
|
441
|
+
const headBlock = rawGlobalDynamic.head_block_number;
|
|
442
|
+
const totalVestingFund = totalVestingFundAmount;
|
|
443
|
+
const totalVestingShares = totalVestingSharesAmount;
|
|
444
|
+
const virtualSupply = parseAsset(rawGlobalDynamic.virtual_supply).amount;
|
|
445
|
+
const vestingRewardPercent = rawGlobalDynamic.vesting_reward_percent || 0;
|
|
446
|
+
const accountCreationFee = rawChainProps.account_creation_fee;
|
|
459
447
|
return {
|
|
448
|
+
// Backward compatible transformed fields (camelCase, parsed)
|
|
460
449
|
hivePerMVests,
|
|
461
450
|
base,
|
|
462
451
|
quote,
|
|
@@ -469,11 +458,27 @@ function getDynamicPropsQueryOptions() {
|
|
|
469
458
|
totalVestingShares,
|
|
470
459
|
virtualSupply,
|
|
471
460
|
vestingRewardPercent,
|
|
472
|
-
accountCreationFee
|
|
461
|
+
accountCreationFee,
|
|
462
|
+
// Raw blockchain data (snake_case, unparsed) for direct use
|
|
463
|
+
// Includes ALL fields from the blockchain responses
|
|
464
|
+
raw: {
|
|
465
|
+
globalDynamic: rawGlobalDynamic,
|
|
466
|
+
feedHistory: rawFeedHistory,
|
|
467
|
+
chainProps: rawChainProps,
|
|
468
|
+
rewardFund: rawRewardFund
|
|
469
|
+
}
|
|
473
470
|
};
|
|
474
471
|
}
|
|
475
472
|
});
|
|
476
473
|
}
|
|
474
|
+
function getRewardFundQueryOptions(fundName = "post") {
|
|
475
|
+
return queryOptions({
|
|
476
|
+
queryKey: ["core", "reward-fund", fundName],
|
|
477
|
+
queryFn: () => CONFIG.hiveClient.database.call("get_reward_fund", [
|
|
478
|
+
fundName
|
|
479
|
+
])
|
|
480
|
+
});
|
|
481
|
+
}
|
|
477
482
|
function getAccountFullQueryOptions(username) {
|
|
478
483
|
return queryOptions({
|
|
479
484
|
queryKey: ["get-account-full", username],
|
|
@@ -1009,6 +1014,46 @@ function getFavouritesInfiniteQueryOptions(activeUsername, code, limit = 10) {
|
|
|
1009
1014
|
enabled: !!activeUsername && !!code
|
|
1010
1015
|
});
|
|
1011
1016
|
}
|
|
1017
|
+
function checkFavouriteQueryOptions(activeUsername, code, targetUsername) {
|
|
1018
|
+
return queryOptions({
|
|
1019
|
+
queryKey: ["accounts", "favourites", "check", activeUsername, targetUsername],
|
|
1020
|
+
enabled: !!activeUsername && !!code && !!targetUsername,
|
|
1021
|
+
queryFn: async () => {
|
|
1022
|
+
if (!activeUsername || !code) {
|
|
1023
|
+
throw new Error("[SDK][Accounts][Favourites] \u2013 missing auth");
|
|
1024
|
+
}
|
|
1025
|
+
if (!targetUsername) {
|
|
1026
|
+
throw new Error("[SDK][Accounts][Favourites] \u2013 no target username");
|
|
1027
|
+
}
|
|
1028
|
+
const fetchApi = getBoundFetch();
|
|
1029
|
+
const response = await fetchApi(
|
|
1030
|
+
CONFIG.privateApiHost + "/private-api/favorites-check",
|
|
1031
|
+
{
|
|
1032
|
+
method: "POST",
|
|
1033
|
+
headers: {
|
|
1034
|
+
"Content-Type": "application/json"
|
|
1035
|
+
},
|
|
1036
|
+
body: JSON.stringify({
|
|
1037
|
+
code,
|
|
1038
|
+
account: targetUsername
|
|
1039
|
+
})
|
|
1040
|
+
}
|
|
1041
|
+
);
|
|
1042
|
+
if (!response.ok) {
|
|
1043
|
+
throw new Error(
|
|
1044
|
+
`[SDK][Accounts][Favourites] \u2013 favorites-check failed with status ${response.status}: ${response.statusText}`
|
|
1045
|
+
);
|
|
1046
|
+
}
|
|
1047
|
+
const result = await response.json();
|
|
1048
|
+
if (typeof result !== "boolean") {
|
|
1049
|
+
throw new Error(
|
|
1050
|
+
`[SDK][Accounts][Favourites] \u2013 favorites-check returned invalid type: expected boolean, got ${typeof result}`
|
|
1051
|
+
);
|
|
1052
|
+
}
|
|
1053
|
+
return result;
|
|
1054
|
+
}
|
|
1055
|
+
});
|
|
1056
|
+
}
|
|
1012
1057
|
function getAccountRecoveriesQueryOptions(username, code) {
|
|
1013
1058
|
return queryOptions({
|
|
1014
1059
|
enabled: !!username && !!code,
|
|
@@ -2000,6 +2045,23 @@ function getReblogsQueryOptions(username, activeUsername, limit = 200) {
|
|
|
2000
2045
|
enabled: !!username
|
|
2001
2046
|
});
|
|
2002
2047
|
}
|
|
2048
|
+
function getRebloggedByQueryOptions(author, permlink) {
|
|
2049
|
+
return queryOptions({
|
|
2050
|
+
queryKey: ["posts", "reblogged-by", author ?? "", permlink ?? ""],
|
|
2051
|
+
queryFn: async () => {
|
|
2052
|
+
if (!author || !permlink) {
|
|
2053
|
+
return [];
|
|
2054
|
+
}
|
|
2055
|
+
const response = await CONFIG.hiveClient.call(
|
|
2056
|
+
"condenser_api",
|
|
2057
|
+
"get_reblogged_by",
|
|
2058
|
+
[author, permlink]
|
|
2059
|
+
);
|
|
2060
|
+
return Array.isArray(response) ? response : [];
|
|
2061
|
+
},
|
|
2062
|
+
enabled: !!author && !!permlink
|
|
2063
|
+
});
|
|
2064
|
+
}
|
|
2003
2065
|
function getSchedulesQueryOptions(activeUsername, code) {
|
|
2004
2066
|
return queryOptions({
|
|
2005
2067
|
queryKey: ["posts", "schedules", activeUsername],
|
|
@@ -2353,8 +2415,8 @@ function toEntryArray(x) {
|
|
|
2353
2415
|
return Array.isArray(x) ? x : [];
|
|
2354
2416
|
}
|
|
2355
2417
|
async function getVisibleFirstLevelThreadItems(container) {
|
|
2356
|
-
const
|
|
2357
|
-
const discussionItemsRaw = await CONFIG.queryClient.fetchQuery(
|
|
2418
|
+
const queryOptions94 = getDiscussionsQueryOptions(container, "created" /* created */, true);
|
|
2419
|
+
const discussionItemsRaw = await CONFIG.queryClient.fetchQuery(queryOptions94);
|
|
2358
2420
|
const discussionItems = toEntryArray(discussionItemsRaw);
|
|
2359
2421
|
if (discussionItems.length <= 1) {
|
|
2360
2422
|
return [];
|
|
@@ -5185,6 +5247,34 @@ function getTradeHistoryQueryOptions(limit = 1e3, startDate, endDate) {
|
|
|
5185
5247
|
])
|
|
5186
5248
|
});
|
|
5187
5249
|
}
|
|
5250
|
+
function getFeedHistoryQueryOptions() {
|
|
5251
|
+
return queryOptions({
|
|
5252
|
+
queryKey: ["market", "feed-history"],
|
|
5253
|
+
queryFn: async () => {
|
|
5254
|
+
try {
|
|
5255
|
+
const feedHistory = await CONFIG.hiveClient.database.call("get_feed_history");
|
|
5256
|
+
return feedHistory;
|
|
5257
|
+
} catch (error) {
|
|
5258
|
+
throw error;
|
|
5259
|
+
}
|
|
5260
|
+
}
|
|
5261
|
+
});
|
|
5262
|
+
}
|
|
5263
|
+
function getCurrentMedianHistoryPriceQueryOptions() {
|
|
5264
|
+
return queryOptions({
|
|
5265
|
+
queryKey: ["market", "current-median-history-price"],
|
|
5266
|
+
queryFn: async () => {
|
|
5267
|
+
try {
|
|
5268
|
+
const price = await CONFIG.hiveClient.database.call(
|
|
5269
|
+
"get_current_median_history_price"
|
|
5270
|
+
);
|
|
5271
|
+
return price;
|
|
5272
|
+
} catch (error) {
|
|
5273
|
+
throw error;
|
|
5274
|
+
}
|
|
5275
|
+
}
|
|
5276
|
+
});
|
|
5277
|
+
}
|
|
5188
5278
|
|
|
5189
5279
|
// src/modules/market/requests.ts
|
|
5190
5280
|
async function parseJsonResponse2(response) {
|
|
@@ -5956,6 +6046,6 @@ async function getSpkMarkets() {
|
|
|
5956
6046
|
return await response.json();
|
|
5957
6047
|
}
|
|
5958
6048
|
|
|
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 };
|
|
6049
|
+
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, checkFavouriteQueryOptions, 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, getCurrentMedianHistoryPriceQueryOptions, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavouritesInfiniteQueryOptions, getFavouritesQueryOptions, getFeedHistoryQueryOptions, 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, getRebloggedByQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRewardFundQueryOptions, 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 };
|
|
5960
6050
|
//# sourceMappingURL=index.mjs.map
|
|
5961
6051
|
//# sourceMappingURL=index.mjs.map
|