@ecency/sdk 2.2.6 → 2.2.8
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/hive.js +1 -1
- package/dist/browser/hive.js.map +1 -1
- package/dist/browser/index.d.ts +260 -9
- package/dist/browser/index.js +3 -3
- package/dist/browser/index.js.map +1 -1
- package/dist/node/hive.cjs +1 -1
- package/dist/node/hive.cjs.map +1 -1
- package/dist/node/hive.mjs +1 -1
- package/dist/node/hive.mjs.map +1 -1
- package/dist/node/index.cjs +3 -3
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.mjs +3 -3
- package/dist/node/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser/index.d.ts
CHANGED
|
@@ -80,6 +80,11 @@ interface DynamicProps$1 {
|
|
|
80
80
|
quote: number;
|
|
81
81
|
fundRewardBalance: number;
|
|
82
82
|
fundRecentClaims: number;
|
|
83
|
+
votePowerReserveRate: number;
|
|
84
|
+
authorRewardCurve: string;
|
|
85
|
+
contentConstant: number;
|
|
86
|
+
currentHardforkVersion: string;
|
|
87
|
+
lastHardfork: number;
|
|
83
88
|
hbdPrintRate: number;
|
|
84
89
|
hbdInterestRate: number;
|
|
85
90
|
headBlock: number;
|
|
@@ -93,6 +98,7 @@ interface DynamicProps$1 {
|
|
|
93
98
|
feedHistory: Record<string, any>;
|
|
94
99
|
chainProps: Record<string, any>;
|
|
95
100
|
rewardFund: Record<string, any>;
|
|
101
|
+
hardforkProps: Record<string, any>;
|
|
96
102
|
};
|
|
97
103
|
}
|
|
98
104
|
|
|
@@ -934,6 +940,7 @@ declare const CONFIG: {
|
|
|
934
940
|
readonly hiveNodes: string[];
|
|
935
941
|
heliusApiKey: string | undefined;
|
|
936
942
|
queryClient: QueryClient;
|
|
943
|
+
pollsApiHost: string;
|
|
937
944
|
plausibleHost: string;
|
|
938
945
|
spkNode: string;
|
|
939
946
|
dmcaAccounts: string[];
|
|
@@ -968,6 +975,11 @@ declare namespace ConfigManager {
|
|
|
968
975
|
* @throws Never throws - always returns a valid URL
|
|
969
976
|
*/
|
|
970
977
|
function getValidatedBaseUrl(): string;
|
|
978
|
+
/**
|
|
979
|
+
* Set the polls API host
|
|
980
|
+
* @param host - The polls API host URL (e.g., "https://poll.ecency.com")
|
|
981
|
+
*/
|
|
982
|
+
function setPollsApiHost(host: string): void;
|
|
971
983
|
/**
|
|
972
984
|
* Set the image host
|
|
973
985
|
* @param host - The image host URL (e.g., "https://images.ecency.com")
|
|
@@ -1271,6 +1283,8 @@ declare const QueryKeys: {
|
|
|
1271
1283
|
readonly list: (limit: number) => (string | number)[];
|
|
1272
1284
|
readonly votes: (username: string | undefined) => (string | undefined)[];
|
|
1273
1285
|
readonly proxy: () => string[];
|
|
1286
|
+
readonly voters: (witness: string, page: number, pageSize: number, sort: string, direction: string) => (string | number)[];
|
|
1287
|
+
readonly voterCount: (witness: string) => string[];
|
|
1274
1288
|
};
|
|
1275
1289
|
readonly wallet: {
|
|
1276
1290
|
readonly outgoingRcDelegations: (username: string, limit: number) => (string | number)[];
|
|
@@ -1283,6 +1297,8 @@ declare const QueryKeys: {
|
|
|
1283
1297
|
readonly openOrders: (user: string) => string[];
|
|
1284
1298
|
readonly collateralizedConversionRequests: (account: string) => string[];
|
|
1285
1299
|
readonly recurrentTransfers: (username: string) => string[];
|
|
1300
|
+
readonly balanceHistory: (username: string, coinType: string, pageSize: number) => (string | number)[];
|
|
1301
|
+
readonly aggregatedHistory: (username: string, coinType: string) => string[];
|
|
1286
1302
|
readonly portfolio: (username: string, onlyEnabled: string, currency: string) => string[];
|
|
1287
1303
|
};
|
|
1288
1304
|
readonly assets: {
|
|
@@ -1328,6 +1344,10 @@ declare const QueryKeys: {
|
|
|
1328
1344
|
readonly points: (username: string, filter: number) => (string | number)[];
|
|
1329
1345
|
readonly _prefix: (username: string) => string[];
|
|
1330
1346
|
};
|
|
1347
|
+
readonly polls: {
|
|
1348
|
+
readonly details: (author: string, permlink: string) => string[];
|
|
1349
|
+
readonly _prefix: readonly ["polls"];
|
|
1350
|
+
};
|
|
1331
1351
|
readonly operations: {
|
|
1332
1352
|
readonly chainProperties: () => string[];
|
|
1333
1353
|
};
|
|
@@ -1765,6 +1785,41 @@ interface FriendSearchResult {
|
|
|
1765
1785
|
active: string;
|
|
1766
1786
|
}
|
|
1767
1787
|
|
|
1788
|
+
type BalanceCoinType = "HIVE" | "HBD" | "VESTS";
|
|
1789
|
+
interface BalanceHistoryEntry {
|
|
1790
|
+
block_num: number;
|
|
1791
|
+
operation_id: string;
|
|
1792
|
+
op_type_id: number;
|
|
1793
|
+
balance: string;
|
|
1794
|
+
prev_balance: string;
|
|
1795
|
+
balance_change: string;
|
|
1796
|
+
timestamp: string;
|
|
1797
|
+
}
|
|
1798
|
+
interface BalanceHistoryResponse {
|
|
1799
|
+
total_operations: number;
|
|
1800
|
+
total_pages: number;
|
|
1801
|
+
operations_result: BalanceHistoryEntry[];
|
|
1802
|
+
}
|
|
1803
|
+
interface AggregatedBalanceEntry {
|
|
1804
|
+
date: string;
|
|
1805
|
+
balance: {
|
|
1806
|
+
balance: string;
|
|
1807
|
+
savings_balance: string;
|
|
1808
|
+
};
|
|
1809
|
+
prev_balance: {
|
|
1810
|
+
balance: string;
|
|
1811
|
+
savings_balance: string;
|
|
1812
|
+
};
|
|
1813
|
+
min_balance: {
|
|
1814
|
+
balance: string;
|
|
1815
|
+
savings_balance: string;
|
|
1816
|
+
};
|
|
1817
|
+
max_balance: {
|
|
1818
|
+
balance: string;
|
|
1819
|
+
savings_balance: string;
|
|
1820
|
+
};
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1768
1823
|
interface Payload$4 {
|
|
1769
1824
|
profile: Partial<AccountProfile>;
|
|
1770
1825
|
tokens: AccountProfile["tokens"];
|
|
@@ -3127,19 +3182,30 @@ declare function getAccountReputationsQueryOptions(query: string, limit?: number
|
|
|
3127
3182
|
|
|
3128
3183
|
declare const ACCOUNT_OPERATION_GROUPS: Record<OperationGroup, number[]>;
|
|
3129
3184
|
declare const ALL_ACCOUNT_OPERATIONS: number[];
|
|
3130
|
-
|
|
3185
|
+
interface TxPageRaw {
|
|
3186
|
+
entries: Transaction[];
|
|
3187
|
+
currentPage: number;
|
|
3188
|
+
}
|
|
3131
3189
|
/**
|
|
3132
|
-
*
|
|
3190
|
+
* Cursor for transaction pagination.
|
|
3191
|
+
* null = first request (returns newest page, API omits page param).
|
|
3192
|
+
* number = specific page to fetch (decrementing for older data).
|
|
3193
|
+
*/
|
|
3194
|
+
type TxCursor = number | null;
|
|
3195
|
+
/**
|
|
3196
|
+
* Get account transaction history with pagination and filtering.
|
|
3197
|
+
* Uses the hafah-api REST endpoint for server-side op-type filtering
|
|
3198
|
+
* and real pagination metadata.
|
|
3133
3199
|
*
|
|
3134
3200
|
* @param username - Account name to get transactions for
|
|
3135
3201
|
* @param limit - Number of transactions per page
|
|
3136
3202
|
* @param group - Filter by operation group (transfers, market-orders, etc.)
|
|
3137
3203
|
*/
|
|
3138
|
-
declare function getTransactionsInfiniteQueryOptions(username?: string, limit?: number, group?: OperationGroup | ""): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseInfiniteQueryOptions<
|
|
3139
|
-
queryFn?: _tanstack_react_query.QueryFunction<
|
|
3204
|
+
declare function getTransactionsInfiniteQueryOptions(username?: string, limit?: number, group?: OperationGroup | ""): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseInfiniteQueryOptions<TxPageRaw, Error, TxPageRaw, (string | number)[], TxCursor>, "queryFn"> & {
|
|
3205
|
+
queryFn?: _tanstack_react_query.QueryFunction<TxPageRaw, (string | number)[], TxCursor> | undefined;
|
|
3140
3206
|
} & {
|
|
3141
3207
|
queryKey: (string | number)[] & {
|
|
3142
|
-
[dataTagSymbol]: _tanstack_react_query.InfiniteData<
|
|
3208
|
+
[dataTagSymbol]: _tanstack_react_query.InfiniteData<TxPageRaw, unknown>;
|
|
3143
3209
|
[dataTagErrorSymbol]: Error;
|
|
3144
3210
|
};
|
|
3145
3211
|
};
|
|
@@ -3455,6 +3521,54 @@ declare function getProfilesQueryOptions(accounts: string[], observer?: string,
|
|
|
3455
3521
|
};
|
|
3456
3522
|
};
|
|
3457
3523
|
|
|
3524
|
+
interface BalanceHistoryPage {
|
|
3525
|
+
entries: BalanceHistoryEntry[];
|
|
3526
|
+
currentPage: number;
|
|
3527
|
+
}
|
|
3528
|
+
/**
|
|
3529
|
+
* Cursor for balance history pagination.
|
|
3530
|
+
* null = first request (returns the newest page).
|
|
3531
|
+
* number = specific page to fetch (decrementing for older data).
|
|
3532
|
+
*/
|
|
3533
|
+
type BalanceHistoryCursor = number | null;
|
|
3534
|
+
/**
|
|
3535
|
+
* Get balance history for an account with pagination, newest first.
|
|
3536
|
+
* Uses the balance-api REST endpoint with direction=desc.
|
|
3537
|
+
*
|
|
3538
|
+
* Pagination: first call omits `page` to get the newest data.
|
|
3539
|
+
* The response includes `total_pages` so we know the current page number.
|
|
3540
|
+
* Subsequent calls decrement the page number to load older data.
|
|
3541
|
+
*
|
|
3542
|
+
* @param username - Account name
|
|
3543
|
+
* @param coinType - HIVE, HBD, or VESTS
|
|
3544
|
+
* @param pageSize - Number of entries per page
|
|
3545
|
+
*/
|
|
3546
|
+
declare function getBalanceHistoryInfiniteQueryOptions(username?: string, coinType?: BalanceCoinType, pageSize?: number): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseInfiniteQueryOptions<BalanceHistoryPage, Error, BalanceHistoryPage, (string | number)[], BalanceHistoryCursor>, "queryFn"> & {
|
|
3547
|
+
queryFn?: _tanstack_react_query.QueryFunction<BalanceHistoryPage, (string | number)[], BalanceHistoryCursor> | undefined;
|
|
3548
|
+
} & {
|
|
3549
|
+
queryKey: (string | number)[] & {
|
|
3550
|
+
[dataTagSymbol]: _tanstack_react_query.InfiniteData<BalanceHistoryPage, unknown>;
|
|
3551
|
+
[dataTagErrorSymbol]: Error;
|
|
3552
|
+
};
|
|
3553
|
+
};
|
|
3554
|
+
|
|
3555
|
+
/**
|
|
3556
|
+
* Get aggregated balance history for an account (yearly summaries).
|
|
3557
|
+
* Uses the balance-api REST endpoint - enables daily/weekly/monthly summary
|
|
3558
|
+
* widgets that are impossible via RPC.
|
|
3559
|
+
*
|
|
3560
|
+
* @param username - Account name
|
|
3561
|
+
* @param coinType - HIVE, HBD, or VESTS
|
|
3562
|
+
*/
|
|
3563
|
+
declare function getAggregatedBalanceQueryOptions(username?: string, coinType?: BalanceCoinType): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<AggregatedBalanceEntry[], Error, AggregatedBalanceEntry[], string[]>, "queryFn"> & {
|
|
3564
|
+
queryFn?: _tanstack_react_query.QueryFunction<AggregatedBalanceEntry[], string[], never> | undefined;
|
|
3565
|
+
} & {
|
|
3566
|
+
queryKey: string[] & {
|
|
3567
|
+
[dataTagSymbol]: AggregatedBalanceEntry[];
|
|
3568
|
+
[dataTagErrorSymbol]: Error;
|
|
3569
|
+
};
|
|
3570
|
+
};
|
|
3571
|
+
|
|
3458
3572
|
type ProfileTokens = AccountProfile["tokens"];
|
|
3459
3573
|
interface BuildProfileMetadataArgs {
|
|
3460
3574
|
existingProfile?: AccountProfile;
|
|
@@ -3471,6 +3585,7 @@ declare function buildProfileMetadata({ existingProfile, profile, tokens, }: Bui
|
|
|
3471
3585
|
*/
|
|
3472
3586
|
declare function parseAccounts(rawAccounts: any[]): FullAccount[];
|
|
3473
3587
|
|
|
3588
|
+
declare function votingRshares(account: FullAccount, dynamicProps: DynamicProps$1, votingPowerValue: number, weight?: number): number;
|
|
3474
3589
|
declare function votingPower(account: FullAccount): number;
|
|
3475
3590
|
declare function powerRechargeTime(power: number): number;
|
|
3476
3591
|
declare function downVotingPower(account: FullAccount): number;
|
|
@@ -7003,22 +7118,86 @@ interface Witness {
|
|
|
7003
7118
|
owner: string;
|
|
7004
7119
|
signing_key: string;
|
|
7005
7120
|
last_hbd_exchange_update: string;
|
|
7121
|
+
/** Rank by vote weight (only available via REST) */
|
|
7122
|
+
rank?: number;
|
|
7123
|
+
/** Total vests supporting this witness (only available via REST) */
|
|
7124
|
+
vests?: string;
|
|
7125
|
+
/** Number of accounts voting for this witness (only available via REST) */
|
|
7126
|
+
voters_num?: number;
|
|
7127
|
+
/** Daily change in voter count (only available via REST) */
|
|
7128
|
+
voters_num_daily_change?: number;
|
|
7129
|
+
/** Current price feed value (only available via REST) */
|
|
7130
|
+
price_feed?: number;
|
|
7131
|
+
/** HBD interest rate in basis points (only available via REST) */
|
|
7132
|
+
hbd_interest_rate?: number;
|
|
7133
|
+
/** Last confirmed block number (only available via REST) */
|
|
7134
|
+
last_confirmed_block_num?: number;
|
|
7135
|
+
}
|
|
7136
|
+
interface WitnessVoter {
|
|
7137
|
+
voter_name: string;
|
|
7138
|
+
vests: string;
|
|
7139
|
+
account_vests: string;
|
|
7140
|
+
proxied_vests: string;
|
|
7141
|
+
timestamp: string;
|
|
7142
|
+
}
|
|
7143
|
+
interface WitnessVotersResponse {
|
|
7144
|
+
total_votes: number;
|
|
7145
|
+
total_pages: number;
|
|
7146
|
+
voters: WitnessVoter[];
|
|
7006
7147
|
}
|
|
7007
7148
|
|
|
7008
7149
|
type WitnessPage = Witness[];
|
|
7009
7150
|
/**
|
|
7010
|
-
* Get witnesses ordered by vote count (infinite scroll)
|
|
7151
|
+
* Get witnesses ordered by vote count (infinite scroll).
|
|
7152
|
+
* Uses the hafbe-api REST endpoint - replaces multi-call RPC assembly
|
|
7153
|
+
* with a single paginated call. Includes voter count, rank, and other
|
|
7154
|
+
* data that was previously unavailable.
|
|
7011
7155
|
*
|
|
7012
7156
|
* @param limit - Number of witnesses per page
|
|
7013
7157
|
*/
|
|
7014
|
-
declare function getWitnessesInfiniteQueryOptions(limit: number): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseInfiniteQueryOptions<WitnessPage, Error, WitnessPage, (string | number)[],
|
|
7015
|
-
queryFn?: _tanstack_react_query.QueryFunction<WitnessPage, (string | number)[],
|
|
7158
|
+
declare function getWitnessesInfiniteQueryOptions(limit: number): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseInfiniteQueryOptions<WitnessPage, Error, WitnessPage, (string | number)[], number>, "queryFn"> & {
|
|
7159
|
+
queryFn?: _tanstack_react_query.QueryFunction<WitnessPage, (string | number)[], number> | undefined;
|
|
7016
7160
|
} & {
|
|
7017
7161
|
queryKey: (string | number)[] & {
|
|
7018
7162
|
[dataTagSymbol]: _tanstack_react_query.InfiniteData<WitnessPage, unknown>;
|
|
7019
7163
|
[dataTagErrorSymbol]: Error;
|
|
7020
7164
|
};
|
|
7021
7165
|
};
|
|
7166
|
+
type WitnessVoterSortField = "vests" | "account_vests" | "proxied_vests" | "account_name" | "timestamp";
|
|
7167
|
+
type WitnessVoterSortDirection = "asc" | "desc";
|
|
7168
|
+
/**
|
|
7169
|
+
* Get a single page of voters for a specific witness.
|
|
7170
|
+
*
|
|
7171
|
+
* Server-side pagination + sort: each page click fetches that page directly
|
|
7172
|
+
* from hafbe rather than scrolling through accumulated pages on the client.
|
|
7173
|
+
*
|
|
7174
|
+
* @param witness - Witness account name
|
|
7175
|
+
* @param page - 1-based page index
|
|
7176
|
+
* @param pageSize - Number of voters per page
|
|
7177
|
+
* @param sort - Field to sort by
|
|
7178
|
+
* @param direction - asc or desc
|
|
7179
|
+
*/
|
|
7180
|
+
declare function getWitnessVotersPageQueryOptions(witness: string, page: number, pageSize: number, sort?: WitnessVoterSortField, direction?: WitnessVoterSortDirection): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<WitnessVotersResponse, Error, WitnessVotersResponse, (string | number)[]>, "queryFn"> & {
|
|
7181
|
+
queryFn?: _tanstack_react_query.QueryFunction<WitnessVotersResponse, (string | number)[], never> | undefined;
|
|
7182
|
+
} & {
|
|
7183
|
+
queryKey: (string | number)[] & {
|
|
7184
|
+
[dataTagSymbol]: WitnessVotersResponse;
|
|
7185
|
+
[dataTagErrorSymbol]: Error;
|
|
7186
|
+
};
|
|
7187
|
+
};
|
|
7188
|
+
/**
|
|
7189
|
+
* Get total voter count for a witness.
|
|
7190
|
+
*
|
|
7191
|
+
* @param witness - Witness account name
|
|
7192
|
+
*/
|
|
7193
|
+
declare function getWitnessVoterCountQueryOptions(witness: string): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<number, Error, number, string[]>, "queryFn"> & {
|
|
7194
|
+
queryFn?: _tanstack_react_query.QueryFunction<number, string[], never> | undefined;
|
|
7195
|
+
} & {
|
|
7196
|
+
queryKey: string[] & {
|
|
7197
|
+
[dataTagSymbol]: number;
|
|
7198
|
+
[dataTagErrorSymbol]: Error;
|
|
7199
|
+
};
|
|
7200
|
+
};
|
|
7022
7201
|
|
|
7023
7202
|
interface OrdersDataItem {
|
|
7024
7203
|
created: string;
|
|
@@ -8215,4 +8394,76 @@ declare function getBadActorsQueryOptions(): _tanstack_react_query.OmitKeyof<_ta
|
|
|
8215
8394
|
};
|
|
8216
8395
|
};
|
|
8217
8396
|
|
|
8218
|
-
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountFavorite, type AccountFollowStats, type AccountKeys, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AiAssistParams, type AiAssistPrice, type AiAssistResponse, type AiGenerationPrice, type AiGenerationRequest, type AiGenerationResponse, type AiImagePowerTier, type AiImagePriceResponse, 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 ApiWeeklyEarningsNotification, type Asset, AssetOperation, type AuthContext, type AuthContextV2, type AuthMethod, type AuthorReward, Authority, type AuthorityLevel, type AuthorityType, type Beneficiary, type BlogEntry, type BoostPlusAccountPrice, type BoostPlusPayload, type BroadcastMode, BroadcastResult, type BuildProfileMetadataArgs, BuySellTransactionType, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimAccountPayload, type ClaimEngineRewardsPayload, type ClaimInterestPayload, type ClaimRewardBalance, type ClaimRewardsPayload, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayload, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityProps, type CommunityRewardsRegisterPayload, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type ConvertPayload, type CreateAccountPayload, type CrossPostPayload, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DelegateEngineTokenPayload, type DelegateRcPayload, type DelegateVestingShares, type DelegateVestingSharesPayload, type DelegatedVestingShare, type DeleteCommentPayload, type DeletedEntry, type Draft, type DraftMetadata, type DraftsWrappedResponse, type DynamicProps$1 as DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type EngineMarketOrderPayload, EntriesCacheManagement, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, ErrorType, type FeedHistoryItem, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type FollowPayload, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GeneralAssetInfo, type GeneralAssetTransaction, type GenerateImageParams, type GetGameStatus, type GetRecoveriesEmailResponse, type GrantPostingPermissionPayload, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, type HiveEngineOpenOrder, type HiveEngineOrderBookEntry, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveHbdStats, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, HiveSignerIntegration, type HiveTransaction, type HsTokenRenewResponse, INTERNAL_API_TIMEOUT_MS, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCancelPayload, type LimitOrderCreate, type LimitOrderCreatePayload, type LockLarynxPayload, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, type MedianHistoryPrice, type MutePostPayload, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, OPERATION_AUTHORITY_MAP, type OpenOrdersData, Operation, type OperationGroup, OperationName, OrderIdPrefix, type OrdersData, type OrdersDataItem, type PageStatsResponse, type PaginationMeta, type ParsedChainError, type Payer, type PinPostPayload, type PlatformAdapter, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type PortfolioResponse, type PortfolioWalletItem, type PostTip, type PostTipsResponse, type PowerLarynxPayload, PrivateKey, type ProducerReward, type Profile, type ProfileTokens, type PromotePayload, type PromotePrice, type Proposal, type ProposalCreatePayload, type ProposalPay, type ProposalVote, type ProposalVotePayload, type ProposalVoteRow, PublicKey, QueryKeys, type RCAccount, ROLES, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcStats, type Reblog, type ReblogPayload, type ReceivedVestingShare, type RecordActivityOptions, type Recoveries, type RecurrentTransfer, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardFund, type RewardedCommunity, type SMTAsset, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetCommunityRolePayload, type SetLastReadPayload, type SetWithdrawRoute, type SetWithdrawVestingRoutePayload, SortOrder, type SpkApiWallet, type SpkMarkets, type StakeEngineTokenPayload, type StatsResponse, type SubscribeCommunityPayload, type Subscription, Symbol, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Token, type TokenMetadata, type Transaction, type TransactionConfirmation, type Transfer, type TransferEngineTokenPayload, type TransferFromSavingsPayload, type TransferLarynxPayload, type TransferPayload, type TransferPointPayload, type TransferSpkPayload, type TransferToSavings, type TransferToSavingsPayload, type TransferToVesting, type TransferToVestingPayload, type TransformedSpkMarkets, type TrendingTag, type UndelegateEngineTokenPayload, type UnfollowPayload, type UnstakeEngineTokenPayload, type UnsubscribeCommunityPayload, type UpdateCommunityPayload, type UpdateProposalVotes, type UpdateReplyPayload, type User, type UserImage, type ValidatePostCreatingOptions, type VestingDelegationExpiration, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VotePayload, type VoteProxy, type WalletMetadataCandidate, type WalletOperationPayload, type WaveEntry, type WaveTrendingAuthor, type WaveTrendingTag, type WithdrawRoute, type WithdrawVesting, type WithdrawVestingPayload, type Witness, type WitnessProxyPayload, type WitnessVotePayload, 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, addOptimisticDiscussionEntry, addSchedule, bridgeApiCall, broadcastJson, broadcastOperations, broadcastOperationsAsync, buildAccountCreateOp, buildAccountUpdate2Op, buildAccountUpdateOp, buildActiveCustomJsonOp, buildBoostOp, buildBoostOpWithPoints, buildBoostPlusOp, buildCancelTransferFromSavingsOp, buildChangeRecoveryAccountOp, buildClaimAccountOp, buildClaimInterestOps, buildClaimRewardBalanceOp, buildCollateralizedConvertOp, buildCommentOp, buildCommentOptionsOp, buildCommunityRegistrationOp, buildConvertOp, buildCreateClaimedAccountOp, buildDelegateRcOp, buildDelegateVestingSharesOp, buildDeleteCommentOp, buildEngineClaimOp, buildEngineOp, buildFlagPostOp, buildFollowOp, buildGrantPostingPermissionOp, buildIgnoreOp, buildLimitOrderCancelOp, buildLimitOrderCreateOp, buildLimitOrderCreateOpWithType, buildMultiPointTransferOps, buildMultiTransferOps, buildMutePostOp, buildMuteUserOp, buildPinPostOp, buildPointTransferOp, buildPostingCustomJsonOp, buildProfileMetadata, buildPromoteOp, buildProposalCreateOp, buildProposalVoteOp, buildReblogOp, buildRecoverAccountOp, buildRecurrentTransferOp, buildRemoveProposalOp, buildRequestAccountRecoveryOp, buildRevokeKeysOp, buildRevokePostingPermissionOp, buildSetLastReadOps, buildSetRoleOp, buildSetWithdrawVestingRouteOp, buildSpkCustomJsonOp, buildSubscribeOp, buildTransferFromSavingsOp, buildTransferOp, buildTransferToSavingsOp, buildTransferToVestingOp, buildUnfollowOp, buildUnignoreOp, buildUnsubscribeOp, buildUpdateCommunityOp, buildUpdateProposalOp, buildVoteOp, buildWithdrawVestingOp, buildWitnessProxyOp, buildWitnessVoteOp, calculateRCMana, calculateVPMana, canRevokeFromAuthority, checkFavoriteQueryOptions, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, formatError, formattedNumber, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountWalletAssetInfoQueryOptions, getAccountsQueryOptions, getAiAssistPriceQueryOptions, getAiGeneratePriceQueryOptions, getAllHiveEngineTokensQueryOptions, getAnnouncementsQueryOptions, getBadActorsQueryOptions, 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, getCustomJsonAuthority, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavoritesInfiniteQueryOptions, getFavoritesQueryOptions, getFeedHistoryQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalances, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarket, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadata, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveEngineUnclaimedRewardsQueryOptions, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOperationAuthority, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getPortfolioQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalAuthority, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getRebloggedByQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRequiredAuthority, getRewardFundQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarkets, getSpkMarketsQueryOptions, getSpkWallet, getSpkWalletQueryOptions, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationExpirationsQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByAccountQueryOptions, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFollowingQueryOptions, getWavesTrendingAuthorsQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, isCommunity, isEmptyDate, isInfoError, isNetworkError, isResourceCreditsError, isWif, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseChainError, parseProfileMetadata, powerRechargeTime, rcPower, removeOptimisticDiscussionEntry, resolveHiveOperationFilters, resolvePost, restoreDiscussionSnapshots, restoreEntryInCache, rewardSpk, roleMap, saveNotificationSetting, search, searchPath, searchQueryOptions, sha256, shouldTriggerAuthFallback, signUp, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, updateEntryInCache, uploadImage, uploadImageWithSignature, useAccountFavoriteAdd, useAccountFavoriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useAiAssist, useBookmarkAdd, useBookmarkDelete, useBoostPlus, useBroadcastMutation, useClaimAccount, useClaimEngineRewards, useClaimInterest, useClaimPoints, useClaimRewards, useComment, useConvert, useCreateAccount, useCrossPost, useDelegateEngineToken, useDelegateRc, useDelegateVestingShares, useDeleteComment, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useEngineMarketOrder, useFollow, useGameClaim, useGenerateImage, useGrantPostingPermission, useLimitOrderCancel, useLimitOrderCreate, useLockLarynx, useMarkNotificationsRead, useMoveSchedule, useMutePost, usePinPost, usePowerLarynx, usePromote, useProposalCreate, useProposalVote, useReblog, useRecordActivity, useRegisterCommunityRewards, useRemoveFragment, useSetCommunityRole, useSetLastRead, useSetWithdrawVestingRoute, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useStakeEngineToken, useSubscribeCommunity, useTransfer, useTransferEngineToken, useTransferFromSavings, useTransferLarynx, useTransferPoint, useTransferSpk, useTransferToSavings, useTransferToVesting, useUndelegateEngineToken, useUnfollow, useUnstakeEngineToken, useUnsubscribeCommunity, useUpdateCommunity, useUpdateDraft, useUpdateReply, useUploadImage, useVote, useWalletOperation, useWithdrawVesting, useWitnessProxy, useWitnessVote, usrActivity, validatePostCreating, verifyPostOnAlternateNode, vestsToHp, votingPower, votingValue, withTimeoutSignal };
|
|
8397
|
+
declare const POLLS_PROTOCOL_VERSION = 1.1;
|
|
8398
|
+
declare enum PollPreferredInterpretation {
|
|
8399
|
+
NUMBER_OF_VOTES = "number_of_votes",
|
|
8400
|
+
TOKENS = "tokens"
|
|
8401
|
+
}
|
|
8402
|
+
interface PollChoiceVotes {
|
|
8403
|
+
total_votes: number;
|
|
8404
|
+
hive_hp?: number;
|
|
8405
|
+
hive_proxied_hp?: number;
|
|
8406
|
+
hive_hp_incl_proxied: number | null;
|
|
8407
|
+
}
|
|
8408
|
+
interface PollChoice {
|
|
8409
|
+
choice_num: number;
|
|
8410
|
+
choice_text: string;
|
|
8411
|
+
votes?: PollChoiceVotes;
|
|
8412
|
+
}
|
|
8413
|
+
interface PollVoter {
|
|
8414
|
+
name: string;
|
|
8415
|
+
choices: number[];
|
|
8416
|
+
hive_hp?: number;
|
|
8417
|
+
hive_proxied_hp?: number;
|
|
8418
|
+
hive_hp_incl_proxied?: number;
|
|
8419
|
+
}
|
|
8420
|
+
interface PollStats {
|
|
8421
|
+
total_voting_accounts_num: number;
|
|
8422
|
+
total_hive_hp?: number;
|
|
8423
|
+
total_hive_proxied_hp?: number;
|
|
8424
|
+
total_hive_hp_incl_proxied: number | null;
|
|
8425
|
+
}
|
|
8426
|
+
interface Poll {
|
|
8427
|
+
author: string;
|
|
8428
|
+
permlink: string;
|
|
8429
|
+
question: string;
|
|
8430
|
+
poll_choices: PollChoice[];
|
|
8431
|
+
poll_voters?: PollVoter[];
|
|
8432
|
+
poll_stats?: PollStats;
|
|
8433
|
+
poll_trx_id: string;
|
|
8434
|
+
status: string;
|
|
8435
|
+
end_time: string;
|
|
8436
|
+
preferred_interpretation: PollPreferredInterpretation | string;
|
|
8437
|
+
max_choices_voted: number;
|
|
8438
|
+
filter_account_age_days: number;
|
|
8439
|
+
protocol_version: number;
|
|
8440
|
+
created: string;
|
|
8441
|
+
post_title: string;
|
|
8442
|
+
post_body: string;
|
|
8443
|
+
parent_permlink: string;
|
|
8444
|
+
tags: string[];
|
|
8445
|
+
image: unknown[];
|
|
8446
|
+
token?: string | null;
|
|
8447
|
+
community_membership?: string[];
|
|
8448
|
+
allow_vote_changes?: boolean;
|
|
8449
|
+
ui_hide_res_until_voted?: boolean;
|
|
8450
|
+
platform?: string;
|
|
8451
|
+
}
|
|
8452
|
+
declare function mapMetaChoicesToPollChoices(metaChoices: string[]): PollChoice[];
|
|
8453
|
+
|
|
8454
|
+
declare function getPollQueryOptions(author: string | undefined, permlink: string | undefined): _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<Poll, Error, Poll, string[]>, "queryFn"> & {
|
|
8455
|
+
queryFn?: _tanstack_react_query.QueryFunction<Poll, string[], never> | undefined;
|
|
8456
|
+
} & {
|
|
8457
|
+
queryKey: string[] & {
|
|
8458
|
+
[dataTagSymbol]: Poll;
|
|
8459
|
+
[dataTagErrorSymbol]: Error;
|
|
8460
|
+
};
|
|
8461
|
+
};
|
|
8462
|
+
|
|
8463
|
+
interface PollVotePayload {
|
|
8464
|
+
pollTrxId: string;
|
|
8465
|
+
choices: number[];
|
|
8466
|
+
}
|
|
8467
|
+
declare function usePollVote(username: string | undefined, auth?: AuthContextV2, broadcastMode?: BroadcastMode): _tanstack_react_query.UseMutationResult<unknown, Error, PollVotePayload, unknown>;
|
|
8468
|
+
|
|
8469
|
+
export { ACCOUNT_OPERATION_GROUPS, ALL_ACCOUNT_OPERATIONS, ALL_NOTIFY_TYPES, type AccountBookmark, type AccountFavorite, type AccountFollowStats, type AccountKeys, type AccountNotification, type AccountProfile, type AccountRelationship, type AccountReputation, type AggregatedBalanceEntry, type AiAssistParams, type AiAssistPrice, type AiAssistResponse, type AiGenerationPrice, type AiGenerationRequest, type AiGenerationResponse, type AiImagePowerTier, type AiImagePriceResponse, 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 ApiWeeklyEarningsNotification, type Asset, AssetOperation, type AuthContext, type AuthContextV2, type AuthMethod, type AuthorReward, Authority, type AuthorityLevel, type AuthorityType, type BalanceCoinType, type BalanceHistoryEntry, type BalanceHistoryResponse, type Beneficiary, type BlogEntry, type BoostPlusAccountPrice, type BoostPlusPayload, type BroadcastMode, BroadcastResult, type BuildProfileMetadataArgs, BuySellTransactionType, CONFIG, type CancelTransferFromSavings, type CantAfford, type CheckUsernameWalletsPendingResponse, type ClaimAccountPayload, type ClaimEngineRewardsPayload, type ClaimInterestPayload, type ClaimRewardBalance, type ClaimRewardsPayload, type CollateralizedConversionRequest, type CollateralizedConvert, type CommentBenefactor, type CommentPayload, type CommentPayoutUpdate, type CommentReward, type Communities, type Community, type CommunityProps, type CommunityRewardsRegisterPayload, type CommunityRole, type CommunityTeam, type CommunityType, ConfigManager, type ConversionRequest, type ConvertPayload, type CreateAccountPayload, type CrossPostPayload, type CurationDuration, type CurationItem, type CurationReward, type CurrencyRates, type DelegateEngineTokenPayload, type DelegateRcPayload, type DelegateVestingShares, type DelegateVestingSharesPayload, type DelegatedVestingShare, type DeleteCommentPayload, type DeletedEntry, type Draft, type DraftMetadata, type DraftsWrappedResponse, type DynamicProps$1 as DynamicProps, index as EcencyAnalytics, EcencyQueriesManager, type EffectiveCommentVote, type EngineMarketOrderPayload, EntriesCacheManagement, type Entry$1 as Entry, type EntryBeneficiaryRoute, type EntryHeader, type EntryStat, type EntryVote, ErrorType, type FeedHistoryItem, type FillCollateralizedConvertRequest, type FillConvertRequest, type FillOrder, type FillRecurrentTransfers, type FillVestingWithdraw, type Follow, type FollowPayload, type Fragment, type FriendSearchResult, type FriendsPageParam, type FriendsRow, type FullAccount, type GameClaim, type GeneralAssetInfo, type GeneralAssetTransaction, type GenerateImageParams, type GetGameStatus, type GetRecoveriesEmailResponse, type GrantPostingPermissionPayload, HIVE_ACCOUNT_OPERATION_GROUPS, HIVE_OPERATION_LIST, HIVE_OPERATION_NAME_BY_ID, HIVE_OPERATION_ORDERS, type HiveBasedAssetSignType, type HiveEngineMarketResponse, type HiveEngineMetric, type HiveEngineOpenOrder, type HiveEngineOrderBookEntry, HiveEngineToken, type HiveEngineTokenBalance, type HiveEngineTokenInfo, type HiveEngineTokenMetadataResponse, type HiveEngineTokenStatus, type HiveEngineTransaction, type HiveHbdStats, type HiveMarketMetric, type HiveOperationFilter, type HiveOperationFilterKey, type HiveOperationFilterValue, type HiveOperationGroup, type HiveOperationName, HiveSignerIntegration, type HiveTransaction, type HsTokenRenewResponse, INTERNAL_API_TIMEOUT_MS, type IncomingRcDelegation, type IncomingRcResponse, type Interest, type JsonMetadata, type JsonPollMetadata, type Keys, type LeaderBoardDuration, type LeaderBoardItem, type LimitOrderCancel, type LimitOrderCancelPayload, type LimitOrderCreate, type LimitOrderCreatePayload, type LockLarynxPayload, type MarketCandlestickDataItem, type MarketData, type MarketStatistics, type MedianHistoryPrice, type MutePostPayload, NaiMap, NotificationFilter, NotificationViewType, type Notifications, NotifyTypes, OPERATION_AUTHORITY_MAP, type OpenOrdersData, Operation, type OperationGroup, OperationName, OrderIdPrefix, type OrdersData, type OrdersDataItem, POLLS_PROTOCOL_VERSION, type PageStatsResponse, type PaginationMeta, type ParsedChainError, type Payer, type PinPostPayload, type PlatformAdapter, type PointTransaction, PointTransactionType, type Points, type PointsResponse, type Poll, type PollChoice, type PollChoiceVotes, PollPreferredInterpretation, type PollStats, type PollVotePayload, type PollVoter, type PortfolioResponse, type PortfolioWalletItem, type PostTip, type PostTipsResponse, type PowerLarynxPayload, PrivateKey, type ProducerReward, type Profile, type ProfileTokens, type PromotePayload, type PromotePrice, type Proposal, type ProposalCreatePayload, type ProposalPay, type ProposalVote, type ProposalVotePayload, type ProposalVoteRow, PublicKey, QueryKeys, type RCAccount, ROLES, type RcDirectDelegation, type RcDirectDelegationsResponse, type RcStats, type Reblog, type ReblogPayload, type ReceivedVestingShare, type RecordActivityOptions, type Recoveries, type RecurrentTransfer, type RecurrentTransfers, type ReferralItem, type ReferralItems, type ReferralStat, type ReturnVestingDelegation, type RewardFund, type RewardedCommunity, type SMTAsset, type SavingsWithdrawRequest, type Schedule, type SearchResponse, type SearchResult, type SetCommunityRolePayload, type SetLastReadPayload, type SetWithdrawRoute, type SetWithdrawVestingRoutePayload, SortOrder, type SpkApiWallet, type SpkMarkets, type StakeEngineTokenPayload, type StatsResponse, type SubscribeCommunityPayload, type Subscription, Symbol, type ThreadItemEntry, ThreeSpeakIntegration, type ThreeSpeakVideo, type Token, type TokenMetadata, type Transaction, type TransactionConfirmation, type Transfer, type TransferEngineTokenPayload, type TransferFromSavingsPayload, type TransferLarynxPayload, type TransferPayload, type TransferPointPayload, type TransferSpkPayload, type TransferToSavings, type TransferToSavingsPayload, type TransferToVesting, type TransferToVestingPayload, type TransformedSpkMarkets, type TrendingTag, type UndelegateEngineTokenPayload, type UnfollowPayload, type UnstakeEngineTokenPayload, type UnsubscribeCommunityPayload, type UpdateCommunityPayload, type UpdateProposalVotes, type UpdateReplyPayload, type User, type UserImage, type ValidatePostCreatingOptions, type VestingDelegationExpiration, type Vote, type VoteHistoryPage, type VoteHistoryPageParam, type VotePayload, type VoteProxy, type WalletMetadataCandidate, type WalletOperationPayload, type WaveEntry, type WaveTrendingAuthor, type WaveTrendingTag, type WithdrawRoute, type WithdrawVesting, type WithdrawVestingPayload, type Witness, type WitnessProxyPayload, type WitnessVotePayload, type WitnessVoter, type WitnessVoterSortDirection, type WitnessVoterSortField, type WitnessVotersResponse, 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, addOptimisticDiscussionEntry, addSchedule, bridgeApiCall, broadcastJson, broadcastOperations, broadcastOperationsAsync, buildAccountCreateOp, buildAccountUpdate2Op, buildAccountUpdateOp, buildActiveCustomJsonOp, buildBoostOp, buildBoostOpWithPoints, buildBoostPlusOp, buildCancelTransferFromSavingsOp, buildChangeRecoveryAccountOp, buildClaimAccountOp, buildClaimInterestOps, buildClaimRewardBalanceOp, buildCollateralizedConvertOp, buildCommentOp, buildCommentOptionsOp, buildCommunityRegistrationOp, buildConvertOp, buildCreateClaimedAccountOp, buildDelegateRcOp, buildDelegateVestingSharesOp, buildDeleteCommentOp, buildEngineClaimOp, buildEngineOp, buildFlagPostOp, buildFollowOp, buildGrantPostingPermissionOp, buildIgnoreOp, buildLimitOrderCancelOp, buildLimitOrderCreateOp, buildLimitOrderCreateOpWithType, buildMultiPointTransferOps, buildMultiTransferOps, buildMutePostOp, buildMuteUserOp, buildPinPostOp, buildPointTransferOp, buildPostingCustomJsonOp, buildProfileMetadata, buildPromoteOp, buildProposalCreateOp, buildProposalVoteOp, buildReblogOp, buildRecoverAccountOp, buildRecurrentTransferOp, buildRemoveProposalOp, buildRequestAccountRecoveryOp, buildRevokeKeysOp, buildRevokePostingPermissionOp, buildSetLastReadOps, buildSetRoleOp, buildSetWithdrawVestingRouteOp, buildSpkCustomJsonOp, buildSubscribeOp, buildTransferFromSavingsOp, buildTransferOp, buildTransferToSavingsOp, buildTransferToVestingOp, buildUnfollowOp, buildUnignoreOp, buildUnsubscribeOp, buildUpdateCommunityOp, buildUpdateProposalOp, buildVoteOp, buildWithdrawVestingOp, buildWitnessProxyOp, buildWitnessVoteOp, calculateRCMana, calculateVPMana, canRevokeFromAuthority, checkFavoriteQueryOptions, checkUsernameWalletsPendingQueryOptions, decodeObj, dedupeAndSortKeyAuths, deleteDraft, deleteImage, deleteSchedule, downVotingPower, encodeObj, extractAccountProfile, formatError, formattedNumber, getAccountFullQueryOptions, getAccountNotificationsInfiniteQueryOptions, getAccountPendingRecoveryQueryOptions, getAccountPosts, getAccountPostsInfiniteQueryOptions, getAccountPostsQueryOptions, getAccountRcQueryOptions, getAccountRecoveriesQueryOptions, getAccountReputationsQueryOptions, getAccountSubscriptionsQueryOptions, getAccountVoteHistoryInfiniteQueryOptions, getAccountWalletAssetInfoQueryOptions, getAccountsQueryOptions, getAggregatedBalanceQueryOptions, getAiAssistPriceQueryOptions, getAiGeneratePriceQueryOptions, getAllHiveEngineTokensQueryOptions, getAnnouncementsQueryOptions, getBadActorsQueryOptions, getBalanceHistoryInfiniteQueryOptions, 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, getCustomJsonAuthority, getDeletedEntryQueryOptions, getDiscoverCurationQueryOptions, getDiscoverLeaderboardQueryOptions, getDiscussion, getDiscussionQueryOptions, getDiscussionsQueryOptions, getDraftsInfiniteQueryOptions, getDraftsQueryOptions, getDynamicPropsQueryOptions, getEntryActiveVotesQueryOptions, getFavoritesInfiniteQueryOptions, getFavoritesQueryOptions, getFeedHistoryQueryOptions, getFollowCountQueryOptions, getFollowersQueryOptions, getFollowingQueryOptions, getFragmentsInfiniteQueryOptions, getFragmentsQueryOptions, getFriendsInfiniteQueryOptions, getGalleryImagesQueryOptions, getGameStatusCheckQueryOptions, getHbdAssetGeneralInfoQueryOptions, getHbdAssetTransactionsQueryOptions, getHiveAssetGeneralInfoQueryOptions, getHiveAssetMetricQueryOptions, getHiveAssetTransactionsQueryOptions, getHiveAssetWithdrawalRoutesQueryOptions, getHiveEngineBalancesWithUsdQueryOptions, getHiveEngineMetrics, getHiveEngineOpenOrders, getHiveEngineOrderBook, getHiveEngineTokenGeneralInfoQueryOptions, getHiveEngineTokenMetrics, getHiveEngineTokenTransactions, getHiveEngineTokenTransactionsQueryOptions, getHiveEngineTokensBalances, getHiveEngineTokensBalancesQueryOptions, getHiveEngineTokensMarket, getHiveEngineTokensMarketQueryOptions, getHiveEngineTokensMetadata, getHiveEngineTokensMetadataQueryOptions, getHiveEngineTokensMetricsQueryOptions, getHiveEngineTradeHistory, getHiveEngineUnclaimedRewards, getHiveEngineUnclaimedRewardsQueryOptions, getHiveHbdStatsQueryOptions, getHivePoshLinksQueryOptions, getHivePowerAssetGeneralInfoQueryOptions, getHivePowerAssetTransactionsQueryOptions, getHivePowerDelegatesInfiniteQueryOptions, getHivePowerDelegatingsQueryOptions, getHivePrice, getImagesInfiniteQueryOptions, getImagesQueryOptions, getIncomingRcQueryOptions, getLarynxAssetGeneralInfoQueryOptions, getLarynxPowerAssetGeneralInfoQueryOptions, getMarketData, getMarketDataQueryOptions, getMarketHistoryQueryOptions, getMarketStatisticsQueryOptions, getMutedUsersQueryOptions, getNormalizePostQueryOptions, getNotificationSetting, getNotifications, getNotificationsInfiniteQueryOptions, getNotificationsSettingsQueryOptions, getNotificationsUnreadCountQueryOptions, getOpenOrdersQueryOptions, getOperationAuthority, getOrderBookQueryOptions, getOutgoingRcDelegationsInfiniteQueryOptions, getPageStatsQueryOptions, getPointsAssetGeneralInfoQueryOptions, getPointsAssetTransactionsQueryOptions, getPointsQueryOptions, getPollQueryOptions, getPortfolioQueryOptions, getPost, getPostHeader, getPostHeaderQueryOptions, getPostQueryOptions, getPostTipsQueryOptions, getPostsRanked, getPostsRankedInfiniteQueryOptions, getPostsRankedQueryOptions, getProfiles, getProfilesQueryOptions, getPromotePriceQueryOptions, getPromotedPost, getPromotedPostsQuery, getProposalAuthority, getProposalQueryOptions, getProposalVotesInfiniteQueryOptions, getProposalsQueryOptions, getQueryClient, getRcStatsQueryOptions, getRebloggedByQueryOptions, getReblogsQueryOptions, getReceivedVestingSharesQueryOptions, getRecurrentTransfersQueryOptions, getReferralsInfiniteQueryOptions, getReferralsStatsQueryOptions, getRelationshipBetweenAccounts, getRelationshipBetweenAccountsQueryOptions, getRequiredAuthority, getRewardFundQueryOptions, getRewardedCommunitiesQueryOptions, getSavingsWithdrawFromQueryOptions, getSchedulesInfiniteQueryOptions, getSchedulesQueryOptions, getSearchAccountQueryOptions, getSearchAccountsByUsernameQueryOptions, getSearchApiInfiniteQueryOptions, getSearchFriendsQueryOptions, getSearchPathQueryOptions, getSearchTopicsQueryOptions, getSimilarEntriesQueryOptions, getSpkAssetGeneralInfoQueryOptions, getSpkMarkets, getSpkMarketsQueryOptions, getSpkWallet, getSpkWalletQueryOptions, getStatsQueryOptions, getSubscribers, getSubscriptions, getTradeHistoryQueryOptions, getTransactionsInfiniteQueryOptions, getTrendingTagsQueryOptions, getTrendingTagsWithStatsQueryOptions, getUserPostVoteQueryOptions, getUserProposalVotesQueryOptions, getVestingDelegationExpirationsQueryOptions, getVestingDelegationsQueryOptions, getVisibleFirstLevelThreadItems, getWavesByAccountQueryOptions, getWavesByHostQueryOptions, getWavesByTagQueryOptions, getWavesFollowingQueryOptions, getWavesTrendingAuthorsQueryOptions, getWavesTrendingTagsQueryOptions, getWithdrawRoutesQueryOptions, getWitnessVoterCountQueryOptions, getWitnessVotersPageQueryOptions, getWitnessesInfiniteQueryOptions, hsTokenRenew, isCommunity, isEmptyDate, isInfoError, isNetworkError, isResourceCreditsError, isWif, isWrappedResponse, lookupAccountsQueryOptions, makeQueryClient, mapMetaChoicesToPollChoices, mapThreadItemsToWaveEntries, markNotifications, moveSchedule, normalizePost, normalizeToWrappedResponse, normalizeWaveEntryFromApi, onboardEmail, parseAccounts, parseAsset, parseChainError, parseProfileMetadata, powerRechargeTime, rcPower, removeOptimisticDiscussionEntry, resolveHiveOperationFilters, resolvePost, restoreDiscussionSnapshots, restoreEntryInCache, rewardSpk, roleMap, saveNotificationSetting, search, searchPath, searchQueryOptions, sha256, shouldTriggerAuthFallback, signUp, sortDiscussions, subscribeEmail, toEntryArray, updateDraft, updateEntryInCache, uploadImage, uploadImageWithSignature, useAccountFavoriteAdd, useAccountFavoriteDelete, useAccountRelationsUpdate, useAccountRevokeKey, useAccountRevokePosting, useAccountUpdate, useAccountUpdateKeyAuths, useAccountUpdatePassword, useAccountUpdateRecovery, useAddDraft, useAddFragment, useAddImage, useAddSchedule, useAiAssist, useBookmarkAdd, useBookmarkDelete, useBoostPlus, useBroadcastMutation, useClaimAccount, useClaimEngineRewards, useClaimInterest, useClaimPoints, useClaimRewards, useComment, useConvert, useCreateAccount, useCrossPost, useDelegateEngineToken, useDelegateRc, useDelegateVestingShares, useDeleteComment, useDeleteDraft, useDeleteImage, useDeleteSchedule, useEditFragment, useEngineMarketOrder, useFollow, useGameClaim, useGenerateImage, useGrantPostingPermission, useLimitOrderCancel, useLimitOrderCreate, useLockLarynx, useMarkNotificationsRead, useMoveSchedule, useMutePost, usePinPost, usePollVote, usePowerLarynx, usePromote, useProposalCreate, useProposalVote, useReblog, useRecordActivity, useRegisterCommunityRewards, useRemoveFragment, useSetCommunityRole, useSetLastRead, useSetWithdrawVestingRoute, useSignOperationByHivesigner, useSignOperationByKey, useSignOperationByKeychain, useStakeEngineToken, useSubscribeCommunity, useTransfer, useTransferEngineToken, useTransferFromSavings, useTransferLarynx, useTransferPoint, useTransferSpk, useTransferToSavings, useTransferToVesting, useUndelegateEngineToken, useUnfollow, useUnstakeEngineToken, useUnsubscribeCommunity, useUpdateCommunity, useUpdateDraft, useUpdateReply, useUploadImage, useVote, useWalletOperation, useWithdrawVesting, useWitnessProxy, useWitnessVote, usrActivity, validatePostCreating, verifyPostOnAlternateNode, vestsToHp, votingPower, votingRshares, votingValue, withTimeoutSignal };
|